Spaces:
Running
Running
File size: 3,142 Bytes
6da1f7e 37dec25 138f2f5 d26d78d 138f2f5 37dec25 138f2f5 063176f 138f2f5 d26d78d 138f2f5 37dec25 d302e50 d26d78d d302e50 d26d78d d302e50 d26d78d d302e50 4f6b6be d302e50 d26d78d d302e50 49c5921 d302e50 138f2f5 6da1f7e 138f2f5 4f6b6be 37dec25 6da1f7e d302e50 4f6b6be d302e50 e2724f3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 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 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 |
/* General Styles */
body {
margin: 0;
font-family: Arial, sans-serif;
}
/* Navbar */
.navbar {
background-color: #004d26;
color: #fff;
padding: 10px 20px;
position: fixed;
top: 0;
width: 100%;
z-index: 1000;
}
.navbar .container {
display: flex;
justify-content: space-between;
align-items: center;
}
.welcome-message {
font-size: 14px;
opacity: 0.8;
}
/* Headline Section */
.headline {
background-color: #004d26;
color: #fff;
text-align: center;
padding: 40px 20px;
margin-top: 50px;
}
/* Converter Section */
.converter-section {
background-color: #fff;
padding: 20px;
display: flex;
justify-content: center;
}
.converter-box {
background-color: #fff;
border: 2px solid #004d26;
padding: 20px;
border-radius: 10px;
text-align: center;
width: 300px;
}
/* How to Use Section */
.how-to-use {
background-color: #004d26;
color: #fff;
padding: 40px 20px;
text-align: center;
}
.how-to-use h2 {
font-weight: bold;
}
.step-box {
background-color: #f0f0f0;
color: #000;
padding: 20px;
margin: 10px auto;
border-radius: 10px;
width: 250px;
text-align: left;
}
/* Responsive Design */
@media (max-width: 768px) {
.navbar .welcome-message {
display: none;
}
.converter-box,
.step-box {
width: 100%;
}
}
/* Headline Section */
.headline {
background-color: #006400; /* Dark Green */
color: white;
text-align: center;
padding: 50px 20px;
}
.headline h1 {
font-size: 36px;
}
.headline p {
font-size: 18px;
}
/* Main Content Section */
.main-content {
background-color: white;
padding: 20px 50px;
margin-top: 30px;
display: flex;
justify-content: center;
}
.converter {
display: flex;
flex-direction: column;
align-items: center;
}
input, select, button {
margin: 10px;
padding: 10px;
font-size: 16px;
}
button {
background-color: #4CAF50; /* Green */
color: white;
border: none;
cursor: pointer;
}
button:hover {
background-color: #45a049;
}
#result {
margin-top: 20px;
font-size: 18px;
}
/* Steps Section */
.steps {
background-color: #006400; /* Dark Green */
padding: 30px;
color: white;
text-align: center;
}
.steps h2 {
font-size: 30px;
}
.step-container {
display: flex;
justify-content: space-around;
margin-top: 20px;
}
.step {
background-color: #e0e0e0; /* Light Gray */
padding: 20px;
width: 25%;
border-radius: 8px;
}
.step h3 {
font-weight: bold;
}
.step p {
font-size: 16px;
}
/* Footer Section */
./* Footer */
.footer {
background-color: #ccc;
color: #000;
text-align: center;
padding: 10px 20px;
}
/* Responsive Design */
@media (max-width: 768px) {
.navbar {
padding: 10px 20px;
}
.headline h1 {
font-size: 28px;
}
.main-content {
padding: 20px;
}
.converter {
width: 100%;
}
.step-container {
flex-direction: column;
align-items: center;
}
.step {
width: 80%;
margin-bottom: 20px;
}
.footer {
padding: 15px;
}
} |