Spaces:
Running
Running
File size: 2,222 Bytes
b8b80bc 8b68395 b8b80bc 6bf2ecf d26d78d b8b80bc 6bf2ecf d302e50 b8b80bc 492db51 6bf2ecf d302e50 6bf2ecf d302e50 6bf2ecf 8b68395 6bf2ecf 8b68395 6bf2ecf 8b68395 b8b80bc 8b68395 6bf2ecf 8b68395 6bf2ecf 8b68395 6bf2ecf 8b68395 4f6b6be 8b68395 6bf2ecf 492db51 8b68395 6bf2ecf b8b80bc 6bf2ecf 42b530b 8b68395 6bf2ecf 8b68395 6bf2ecf 8b68395 6bf2ecf 42b530b 8b68395 b8b80bc 8b68395 6bf2ecf 8b68395 |
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 |
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
}
.navbar {
position: fixed;
top: 0;
left: 0;
width: 100%;
background-color: #006400; /* Green */
padding: 10px 20px;
display: flex;
justify-content: flex-start;
align-items: center;
}
.navbar .logo img {
height: 40px;
}
.headline {
text-align: center;
background-color: #004d00; /* Dark Green */
color: white;
padding: 50px 20px;
margin-top: 60px;
}
.headline h1 {
font-size: 36px;
font-weight: bold;
}
.headline p {
font-size: 18px;
}
.content {
background-color: white;
padding: 40px 20px;
margin-top: 20px;
}
.converter-container {
display: flex;
flex-direction: column;
align-items: center;
}
.converter-container input, .converter-container select, .converter-container button {
margin: 10px;
padding: 10px;
font-size: 16px;
width: 200px;
border: 1px solid #ccc;
}
#convert-btn {
background-color: #006400;
color: white;
cursor: pointer;
}
#convert-btn:hover {
background-color: #004d00;
}
#swap-btn {
background-color: #cccccc;
color: black;
cursor: pointer;
margin-top: 10px;
}
#swap-btn:hover {
background-color: #b3b3b3;
}
.how-to-use {
background-color: #004d00; /* Dark Green */
color: white;
padding: 30px 20px;
margin-top: 20px;
text-align: center;
}
.how-to-use h2 {
font-weight: bold;
}
.steps {
display: flex;
justify-content: center;
margin-top: 20px;
flex-wrap: wrap;
}
.step {
background-color: #e0e0e0; /* Gray */
padding: 20px;
margin: 10px;
width: 200px;
border-radius: 8px;
text-align: center;
}
.step h3 {
font-weight: bold;
}
.footer {
background-color: #666666; /* Dark Gray */
color: white;
padding: 20px 0;
text-align: center;
margin-top: 40px;
}
.footer-content p {
margin: 5px 0;
}
@media screen and (max-width: 768px) {
.steps {
flex-direction: column;
}
}
@media screen and (max-width: 480px) {
.converter-container {
width: 100%;
}
.footer-content p {
font-size: 14px;
}
} |