Spaces:
Runtime error
Runtime error
File size: 1,903 Bytes
3eed4de |
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 |
body {
font-family: Arial, sans-serif;
background-color: #181818;
color: #e0e0e0;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
min-height: 100vh;
height: 100%;
margin: 0;
padding: 0;
}
.container {
background: #222;
padding: 20px;
border-radius: 10px;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
text-align: center;
width: 90%;
max-width: 600px;
margin-bottom: 20px;
}
.first-container {
margin-top: 20px;
}
.res-container {
text-align: left;
}
h1 {
color: #f0f0f0;
}
h3 {
margin-top: 40px;
}
p.meta-info {
color: #bbb;
font-size: 14px;
line-height: 0
}
textarea, input {
width: 100%;
padding: 10px;
border: 1px solid #444;
border-radius: 5px;
background: #333;
color: #e0e0e0;
resize: none;
font-size: 16px;
outline: none;
box-sizing: border-box;
margin-bottom: 10px;
font-family: inherit;
}
button {
padding: 10px 15px;
border: none;
background: #007bff;
color: white;
font-size: 16px;
cursor: pointer;
border-radius: 5px;
transition: 0.3s;
width: 100%;
}
button:hover {
background: #0056b3;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
a {
color: inherit;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
img {
display: block;
margin: 0 auto;
}
.about-container {
margin-top: 20px;
}
.about-container li {
margin-bottom: 15px;
text-align: left;
}
.about-container p {
text-align: left;
}
footer {
text-align: center;
margin-bottom: 20px;
color: #bbb;
font-size: 14px;
}
|