Update style.css
Browse files
style.css
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
|
|
| 1 |
body {
|
| 2 |
font-family: Arial, sans-serif;
|
| 3 |
margin: 0;
|
|
@@ -7,6 +8,7 @@ body {
|
|
| 7 |
text-align: center;
|
| 8 |
}
|
| 9 |
|
|
|
|
| 10 |
.header {
|
| 11 |
background-color: #333;
|
| 12 |
padding: 10px;
|
|
@@ -18,6 +20,15 @@ body {
|
|
| 18 |
text-decoration: none;
|
| 19 |
}
|
| 20 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
.container {
|
| 22 |
max-width: 400px;
|
| 23 |
margin: 20px auto;
|
|
@@ -71,6 +82,7 @@ button:hover {
|
|
| 71 |
font-size: 16px;
|
| 72 |
}
|
| 73 |
|
|
|
|
| 74 |
.footer {
|
| 75 |
margin-top: 20px;
|
| 76 |
padding: 10px;
|
|
@@ -80,4 +92,20 @@ button:hover {
|
|
| 80 |
|
| 81 |
.footer p {
|
| 82 |
margin: 5px 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 83 |
}
|
|
|
|
| 1 |
+
/* General Styles */
|
| 2 |
body {
|
| 3 |
font-family: Arial, sans-serif;
|
| 4 |
margin: 0;
|
|
|
|
| 8 |
text-align: center;
|
| 9 |
}
|
| 10 |
|
| 11 |
+
/* Header */
|
| 12 |
.header {
|
| 13 |
background-color: #333;
|
| 14 |
padding: 10px;
|
|
|
|
| 20 |
text-decoration: none;
|
| 21 |
}
|
| 22 |
|
| 23 |
+
/* Logo */
|
| 24 |
+
.logo img {
|
| 25 |
+
display: block;
|
| 26 |
+
margin: 20px auto;
|
| 27 |
+
width: 50px;
|
| 28 |
+
height: 50px;
|
| 29 |
+
}
|
| 30 |
+
|
| 31 |
+
/* Container */
|
| 32 |
.container {
|
| 33 |
max-width: 400px;
|
| 34 |
margin: 20px auto;
|
|
|
|
| 82 |
font-size: 16px;
|
| 83 |
}
|
| 84 |
|
| 85 |
+
/* Footer */
|
| 86 |
.footer {
|
| 87 |
margin-top: 20px;
|
| 88 |
padding: 10px;
|
|
|
|
| 92 |
|
| 93 |
.footer p {
|
| 94 |
margin: 5px 0;
|
| 95 |
+
}
|
| 96 |
+
|
| 97 |
+
/* Social Icons */
|
| 98 |
+
.social-icons {
|
| 99 |
+
display: flex;
|
| 100 |
+
justify-content: center;
|
| 101 |
+
margin-top: 10px;
|
| 102 |
+
}
|
| 103 |
+
|
| 104 |
+
.social-icons a {
|
| 105 |
+
margin: 0 5px;
|
| 106 |
+
}
|
| 107 |
+
|
| 108 |
+
.social-icons img {
|
| 109 |
+
width: 24px;
|
| 110 |
+
height: 24px;
|
| 111 |
}
|