switching/css/base.css

81 lines
1.1 KiB
CSS
Raw Normal View History

2020-02-17 21:20:28 +00:00
@font-face {
font-family: 'exo2';
src:url('../fonts/exo2.ttf');
}
2020-02-18 07:29:13 +00:00
.textblock {
2020-02-21 09:19:29 +00:00
background-color:#1f2833;
2020-02-21 06:33:54 +00:00
border-radius:2px;
2020-02-18 10:51:34 +00:00
border: 1px solid #667;
2020-02-18 07:29:13 +00:00
display:inline-block;
2020-02-18 09:43:02 +00:00
width: auto;
2020-02-21 09:19:29 +00:00
color: #c5c6c7;
2020-02-18 09:03:39 +00:00
padding: 2% 2% 2% 2%;
2020-02-18 12:00:49 +00:00
margin: 1% 1% 1% 1%;
2020-02-18 07:29:13 +00:00
}
.imgblock {
2020-02-21 09:19:29 +00:00
background-color:#1e2832;
2020-02-21 06:33:54 +00:00
border-radius:2px;
2020-02-18 07:29:13 +00:00
border:1px solid #667;
display:inline-block;
width: 90%;
height: 90%;
2020-02-21 09:19:29 +00:00
color: #c5c6c7;
2020-02-18 09:03:39 +00:00
padding: 2% 2% 2% 2%;
2020-02-21 06:32:32 +00:00
margin: 3% 3% 3% 3%;
2020-02-18 07:29:13 +00:00
text-align: justify;
}
2020-02-21 06:32:32 +00:00
.imgblock img {
padding: 2% 2% 2% 2%;
margin: 3% 3% 3% 3%;
}
2020-02-18 07:29:13 +00:00
2020-02-17 21:20:28 +00:00
body {
2020-02-21 06:55:06 +00:00
font: 100%/160% exo2;
2020-02-17 21:20:28 +00:00
width: 900px;
max-width: 96%;
margin: 0 auto;
2020-02-21 09:19:29 +00:00
background-color:#0b0c10;
2020-02-17 21:20:28 +00:00
}
p {
margin: 0 0 20px;
}
a {
2020-02-21 09:19:29 +00:00
color: #45a29e;
2020-02-17 21:20:28 +00:00
text-decoration: none;
}
a:hover {
2020-02-21 09:19:29 +00:00
color: #66fcf1;
2020-02-17 21:20:28 +00:00
}
h1, h2, h3 {
2020-02-18 07:29:13 +00:00
color: #eee;
2020-02-17 21:20:28 +00:00
line-height: 120%;
2020-02-18 09:43:02 +00:00
margin: 20px 0 10px;
2020-02-17 21:20:28 +00:00
}
h1 {
font-size: 1.7em;
2020-02-18 07:29:13 +00:00
color: #bbb;
2020-02-17 21:20:28 +00:00
}
h2 {
font-size: 1.4em;
}
h3 {
font-size: 1.1em;
}
h1, h2, h3 {
2020-02-18 07:29:13 +00:00
color: #999;
2020-02-17 21:20:28 +00:00
line-height: 120%;
2020-02-18 10:51:34 +00:00
margin: 20px 0 10px;
2020-02-17 21:20:28 +00:00
font-family: "exo2";
}
2020-02-18 07:29:13 +00:00