css update

This commit is contained in:
ivan 2022-07-18 12:11:34 +03:00
parent 61ec25a30e
commit 3972a2eee7
1 changed files with 26 additions and 30 deletions

View File

@ -2,26 +2,23 @@
* DWTWL 2.55 license: https://soundragon.su/license/license.html * DWTWL 2.55 license: https://soundragon.su/license/license.html
*/ */
html {
font-family: sans-serif;
}
body { body {
background: #2e3235; background: #2e3235;
margin: 0; margin: 0;
font-family: Ubuntu, sans-serif; font-family: 'Ubuntu', sans-serif;
color: #8a8e99; color: #c0c3c5;
} }
a:link {color: #93b375;} a:link {color: #7bc495;}
a:visited {color: #abc495;} a:visited {color: #93b375;}
a:hover {color: #9fbc85;} a:hover {color: #9fbc85;}
.container { .container {
width: 95%;
margin: auto; margin: auto;
} }
h1, h2, h3, h4, h5, h6 { h1, h2, h3, h4 {
margin-top: 0; margin-top: 0;
margin-bottom: 0; margin-bottom: 0;
font-weight: 500; font-weight: 500;
@ -43,23 +40,9 @@ h4 {
font-size: 2.0rem; font-size: 2.0rem;
} }
h5 {
font-size: 0.7rem;
-moz-text-shadow:0 0 10px #fff775;
-webkit-text-shadow:0 0 10px #fff885;
text-shadow:0 0 10px #fff775;
}
h6 {
font-size: 1.2rem;
-moz-text-shadow: 0 0 10px #00afee;
-webkit-text-shadow: 0 0 10px #00afee;
text-shadow: 0 0 10px #00afee;
}
hr { hr {
border-width: 0; border-width: 0;
border-top: 1px solid #bbb775; border-top: 1px solid #93b775;
} }
p { p {
@ -79,7 +62,6 @@ input[type="submit"] {
padding: 0 20px; padding: 0 20px;
color: #888885; color: #888885;
text-align: center; text-align: center;
font-family: Ubuntu, sans-serif;
font-weight: 800; font-weight: 800;
line-height: 28px; line-height: 28px;
background-color: transparent; background-color: transparent;
@ -117,9 +99,10 @@ input[type="url"],
input[type="password"], input[type="password"],
textarea, textarea,
select { select {
height: 28px;
padding: 3px 5px; padding: 3px 5px;
border: 1px solid #bbb775; background: #374045;
color: #c0c3c5;
border: 1px solid #656565;
border-radius: 6px; border-radius: 6px;
box-shadow: none; box-shadow: none;
} }
@ -133,15 +116,28 @@ input[type="url"]:focus,
input[type="password"]:focus, input[type="password"]:focus,
textarea:focus, textarea:focus,
select:focus { select:focus {
border: 1px solid #888885; border: 1px solid #889985;
outline: 0; outline: 0;
} }
code {
font-family: 'Ubuntu Mono', monospace;
padding: .2rem .2rem;
font-size: 80%;
background: #384135;
color: #a5a8b5;
white-space: pre;
border: 1px solid #585855;
border-radius: 6px;
}
ul { ul {
list-style: circle; list-style: circle;
} }
ol, ul, li { ol,
ul,
li {
margin-top: 0; margin-top: 0;
margin-bottom: 0; margin-bottom: 0;
} }
@ -177,4 +173,4 @@ table, th, td {
border-color: #666665; border-color: #666665;
text-align: center; text-align: center;
color: #a6aab5; color: #a6aab5;
} }