Spaces:
Running
Running
Commit
·
2f81b19
1
Parent(s):
d904128
Update style.css
Browse files
style.css
CHANGED
|
@@ -1,76 +1,98 @@
|
|
|
|
|
| 1 |
* {
|
| 2 |
-
box-sizing: border-box;
|
| 3 |
-
padding: 0;
|
| 4 |
margin: 0;
|
| 5 |
-
|
|
|
|
| 6 |
}
|
| 7 |
|
| 8 |
-
html,
|
| 9 |
body {
|
| 10 |
-
|
|
|
|
|
|
|
|
|
|
| 11 |
}
|
| 12 |
|
| 13 |
-
|
| 14 |
-
|
|
|
|
|
|
|
|
|
|
| 15 |
}
|
| 16 |
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
display: flex;
|
| 20 |
-
flex-direction: column;
|
| 21 |
-
justify-content: center;
|
| 22 |
-
align-items: center;
|
| 23 |
}
|
| 24 |
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
|
|
|
| 28 |
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
|
|
|
| 39 |
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
background-repeat: no-repeat;
|
| 43 |
-
font-size: 18px;
|
| 44 |
}
|
| 45 |
|
| 46 |
-
|
| 47 |
-
|
|
|
|
|
|
|
|
|
|
| 48 |
}
|
| 49 |
|
| 50 |
-
|
| 51 |
-
|
|
|
|
| 52 |
}
|
| 53 |
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
|
|
|
|
|
|
|
| 58 |
}
|
| 59 |
|
| 60 |
-
|
| 61 |
-
|
|
|
|
|
|
|
| 62 |
}
|
| 63 |
|
| 64 |
-
|
| 65 |
-
|
| 66 |
-
|
| 67 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 68 |
}
|
| 69 |
|
| 70 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 71 |
color: white;
|
| 72 |
-
|
| 73 |
-
|
| 74 |
-
|
| 75 |
-
|
|
|
|
|
|
|
|
|
|
| 76 |
}
|
|
|
|
| 1 |
+
/* Basic Reset */
|
| 2 |
* {
|
|
|
|
|
|
|
| 3 |
margin: 0;
|
| 4 |
+
padding: 0;
|
| 5 |
+
box-sizing: border-box;
|
| 6 |
}
|
| 7 |
|
|
|
|
| 8 |
body {
|
| 9 |
+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
| 10 |
+
line-height: 1.6;
|
| 11 |
+
color: #333;
|
| 12 |
+
background-color: #f4f4f4;
|
| 13 |
}
|
| 14 |
|
| 15 |
+
header {
|
| 16 |
+
background-color: #007bff;
|
| 17 |
+
color: #fff;
|
| 18 |
+
padding: 20px 0;
|
| 19 |
+
text-align: center;
|
| 20 |
}
|
| 21 |
|
| 22 |
+
header h1 {
|
| 23 |
+
font-size: 2.5rem;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24 |
}
|
| 25 |
|
| 26 |
+
nav ul {
|
| 27 |
+
list-style: none;
|
| 28 |
+
padding-top: 10px;
|
| 29 |
+
}
|
| 30 |
|
| 31 |
+
nav ul li {
|
| 32 |
+
display: inline;
|
| 33 |
+
margin-right: 20px;
|
| 34 |
+
}
|
| 35 |
|
| 36 |
+
nav ul li a {
|
| 37 |
+
color: #fff;
|
| 38 |
+
text-decoration: none;
|
| 39 |
+
font-weight: bold;
|
| 40 |
+
transition: color 0.3s ease-in-out;
|
| 41 |
+
}
|
| 42 |
|
| 43 |
+
nav ul li a:hover {
|
| 44 |
+
color: #ffc107;
|
|
|
|
|
|
|
| 45 |
}
|
| 46 |
|
| 47 |
+
section {
|
| 48 |
+
margin: 20px 0;
|
| 49 |
+
padding: 20px;
|
| 50 |
+
background: #fff;
|
| 51 |
+
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
| 52 |
}
|
| 53 |
|
| 54 |
+
section h2 {
|
| 55 |
+
color: #007bff;
|
| 56 |
+
margin-bottom: 10px;
|
| 57 |
}
|
| 58 |
|
| 59 |
+
footer {
|
| 60 |
+
background-color: #343a40;
|
| 61 |
+
color: #fff;
|
| 62 |
+
text-align: center;
|
| 63 |
+
padding: 10px 0;
|
| 64 |
+
margin-top: 20px;
|
| 65 |
}
|
| 66 |
|
| 67 |
+
/* Contact Form Styles */
|
| 68 |
+
#contact-form {
|
| 69 |
+
max-width: 500px;
|
| 70 |
+
margin: auto;
|
| 71 |
}
|
| 72 |
|
| 73 |
+
#contact-form label {
|
| 74 |
+
display: block;
|
| 75 |
+
margin: 10px 0 5px;
|
| 76 |
+
}
|
| 77 |
+
|
| 78 |
+
#contact-form input, #contact-form textarea {
|
| 79 |
+
width: 100%;
|
| 80 |
+
padding: 8px;
|
| 81 |
+
margin-bottom: 10px;
|
| 82 |
+
border: 1px solid #ccc;
|
| 83 |
}
|
| 84 |
|
| 85 |
+
#contact-form button {
|
| 86 |
+
display: block;
|
| 87 |
+
width: 100%;
|
| 88 |
+
padding: 10px;
|
| 89 |
+
background-color: #28a745;
|
| 90 |
color: white;
|
| 91 |
+
border: none;
|
| 92 |
+
cursor: pointer;
|
| 93 |
+
transition: background-color 0.3s ease-in-out;
|
| 94 |
+
}
|
| 95 |
+
|
| 96 |
+
#contact-form button:hover {
|
| 97 |
+
background-color: #218838;
|
| 98 |
}
|