Spaces:
Configuration error
Configuration error
Update README.md
Browse files
README.md
CHANGED
@@ -11,31 +11,39 @@
|
|
11 |
display: flex;
|
12 |
justify-content: center;
|
13 |
align-items: center;
|
14 |
-
height: 100vh;
|
15 |
margin: 0;
|
|
|
|
|
16 |
}
|
17 |
.card {
|
18 |
background-color: white;
|
19 |
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
20 |
border-radius: 12px;
|
21 |
padding: 20px;
|
22 |
-
|
|
|
23 |
text-align: center;
|
|
|
24 |
}
|
25 |
.logo img {
|
26 |
-
max-width:
|
27 |
height: auto;
|
|
|
28 |
margin-bottom: 20px;
|
|
|
29 |
}
|
30 |
.title {
|
31 |
-
font-size:
|
32 |
font-weight: bold;
|
33 |
margin-bottom: 10px;
|
|
|
34 |
}
|
35 |
.description {
|
36 |
-
font-size:
|
37 |
color: #555;
|
38 |
margin-bottom: 20px;
|
|
|
39 |
}
|
40 |
.link {
|
41 |
background-color: #007bff;
|
@@ -44,6 +52,8 @@
|
|
44 |
text-decoration: none;
|
45 |
border-radius: 5px;
|
46 |
font-weight: bold;
|
|
|
|
|
47 |
}
|
48 |
.link:hover {
|
49 |
background-color: #0056b3;
|
@@ -53,8 +63,7 @@
|
|
53 |
<body>
|
54 |
<div class="card">
|
55 |
<div class="logo">
|
56 |
-
<img src="https://github.com/user-attachments/assets/f4dd40d4-78ca-4b4e-932d-330f76ea6e1e
|
57 |
-
" alt="Dnotitia Logo">
|
58 |
</div>
|
59 |
<div class="title">Dnotitia</div>
|
60 |
<div class="description">
|
|
|
11 |
display: flex;
|
12 |
justify-content: center;
|
13 |
align-items: center;
|
14 |
+
min-height: 100vh;
|
15 |
margin: 0;
|
16 |
+
padding: 10px;
|
17 |
+
box-sizing: border-box;
|
18 |
}
|
19 |
.card {
|
20 |
background-color: white;
|
21 |
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
22 |
border-radius: 12px;
|
23 |
padding: 20px;
|
24 |
+
width: 100%;
|
25 |
+
max-width: 600px;
|
26 |
text-align: center;
|
27 |
+
box-sizing: border-box;
|
28 |
}
|
29 |
.logo img {
|
30 |
+
max-width: 100%;
|
31 |
height: auto;
|
32 |
+
max-height: 150px;
|
33 |
margin-bottom: 20px;
|
34 |
+
object-fit: contain;
|
35 |
}
|
36 |
.title {
|
37 |
+
font-size: 2em;
|
38 |
font-weight: bold;
|
39 |
margin-bottom: 10px;
|
40 |
+
word-wrap: break-word;
|
41 |
}
|
42 |
.description {
|
43 |
+
font-size: 1em;
|
44 |
color: #555;
|
45 |
margin-bottom: 20px;
|
46 |
+
word-wrap: break-word;
|
47 |
}
|
48 |
.link {
|
49 |
background-color: #007bff;
|
|
|
52 |
text-decoration: none;
|
53 |
border-radius: 5px;
|
54 |
font-weight: bold;
|
55 |
+
display: inline-block;
|
56 |
+
transition: background-color 0.3s;
|
57 |
}
|
58 |
.link:hover {
|
59 |
background-color: #0056b3;
|
|
|
63 |
<body>
|
64 |
<div class="card">
|
65 |
<div class="logo">
|
66 |
+
<img src="https://github.com/user-attachments/assets/f4dd40d4-78ca-4b4e-932d-330f76ea6e1e" alt="Dnotitia Logo">
|
|
|
67 |
</div>
|
68 |
<div class="title">Dnotitia</div>
|
69 |
<div class="description">
|