2023-08-27 09:07:08 +00:00
|
|
|
* {
|
|
|
|
border: 0;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
background: #282b3c;
|
|
|
|
color: #ccc;
|
|
|
|
font-family: Sans-serif;
|
|
|
|
font-size: 13px;
|
|
|
|
}
|
|
|
|
|
2023-08-30 17:29:28 +00:00
|
|
|
a,
|
|
|
|
a:visited,
|
|
|
|
a:active {
|
|
|
|
color: #96d9a1;
|
|
|
|
text-decoration: none;
|
|
|
|
opacity: .9;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
opacity: 1;
|
|
|
|
transition: opacity .5s ease-in-out;
|
|
|
|
}
|
|
|
|
|
2023-08-27 09:07:08 +00:00
|
|
|
h1, h2, h3, h4, h5 {
|
|
|
|
display: inline-block;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
2023-08-30 12:32:31 +00:00
|
|
|
h1 {
|
2023-08-31 17:24:47 +00:00
|
|
|
font-size: 16px;
|
2023-08-30 12:32:31 +00:00
|
|
|
}
|
|
|
|
|
2023-08-27 09:07:08 +00:00
|
|
|
h2 {
|
2023-08-30 17:29:28 +00:00
|
|
|
color: #ccc;
|
2023-08-27 09:07:08 +00:00
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
2023-08-30 17:29:28 +00:00
|
|
|
a h2,
|
|
|
|
a:visited h2,
|
|
|
|
a:active h2 {
|
2023-08-31 17:24:47 +00:00
|
|
|
/* @TODO doubts
|
2023-08-30 17:29:28 +00:00
|
|
|
color: #a4d4ff;
|
2023-08-31 17:24:47 +00:00
|
|
|
*/
|
2023-08-27 09:07:08 +00:00
|
|
|
}
|
|
|
|
|
2023-08-27 21:38:15 +00:00
|
|
|
input,
|
2023-09-24 22:30:28 +00:00
|
|
|
select,
|
2023-08-27 21:38:15 +00:00
|
|
|
textarea {
|
2023-10-06 01:27:21 +00:00
|
|
|
accent-color: #65916d;
|
2023-08-27 21:38:15 +00:00
|
|
|
background: #5d627d;
|
|
|
|
color: #ccc;
|
|
|
|
border: 0;
|
|
|
|
border-radius: 3px;
|
2023-10-03 19:35:13 +00:00
|
|
|
padding: 8px;
|
2023-08-27 21:38:15 +00:00
|
|
|
font-size: 13px;
|
|
|
|
}
|
|
|
|
|
2023-08-27 09:07:08 +00:00
|
|
|
textarea:focus,
|
|
|
|
input:focus {
|
2023-10-06 01:27:21 +00:00
|
|
|
border: none;
|
2023-08-27 09:07:08 +00:00
|
|
|
outline: none;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
2023-10-06 01:27:21 +00:00
|
|
|
select option:active,
|
|
|
|
select option:focus,
|
|
|
|
select option:focus-within,
|
|
|
|
select option:checked {
|
|
|
|
background: linear-gradient(#65916d, #65916d);
|
|
|
|
outline: none;
|
|
|
|
color: #fff;
|
2023-08-30 16:39:51 +00:00
|
|
|
}
|
|
|
|
|
2023-10-06 01:27:21 +00:00
|
|
|
textarea,
|
|
|
|
select[multiple="multiple"] {
|
|
|
|
min-height: 180px;
|
2023-08-27 21:38:15 +00:00
|
|
|
}
|
|
|
|
|
2023-08-27 09:07:08 +00:00
|
|
|
textarea::placeholder,
|
|
|
|
input::placeholder {
|
|
|
|
color: #9698a5;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2023-08-27 13:19:20 +00:00
|
|
|
input:hover,
|
|
|
|
textarea:hover {
|
|
|
|
background: #636884;
|
|
|
|
}
|
|
|
|
|
2023-08-27 09:07:08 +00:00
|
|
|
input[type="submit"] {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2023-08-30 12:32:31 +00:00
|
|
|
td {
|
2023-08-30 12:51:10 +00:00
|
|
|
padding: 2px 0;
|
2023-08-30 12:32:31 +00:00
|
|
|
}
|
2023-08-27 09:07:08 +00:00
|
|
|
|
|
|
|
header a.logo {
|
|
|
|
color: #ccc;
|
|
|
|
font-size: 22px;
|
|
|
|
}
|
|
|
|
|
|
|
|
header a.logo > span {
|
|
|
|
color: #96d9a1;
|
2023-08-28 14:30:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a.button,
|
|
|
|
a.button:visited,
|
|
|
|
a.button:active,
|
|
|
|
a.button:hover,
|
|
|
|
.button {
|
|
|
|
background: #5d627d;
|
|
|
|
color: #ccc;
|
|
|
|
border: 0;
|
|
|
|
border-radius: 3px;
|
|
|
|
padding: 6px 8px;
|
|
|
|
font-size: 13px;
|
2023-08-27 09:07:08 +00:00
|
|
|
}
|