128 lines
1.7 KiB
CSS
Raw Normal View History

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