fedi/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 {
background-color:#224;
2020-02-18 10:51:34 +00:00
border-radius:6px;
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-18 07:29:13 +00:00
color: #bbb;
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 {
background-color:#334;
2020-02-18 10:51:34 +00:00
border-radius:6px;
2020-02-18 07:29:13 +00:00
border:1px solid #667;
display:inline-block;
width: 90%;
height: 90%;
color: #bbb;
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-18 07:29:13 +00:00
font: 110%/180% exo2;
2020-02-17 21:20:28 +00:00
width: 900px;
max-width: 96%;
margin: 0 auto;
2020-02-18 07:29:13 +00:00
background-color:#335;
2020-02-17 21:20:28 +00:00
}
p {
margin: 0 0 20px;
}
a {
color: #69C;
text-decoration: none;
}
a:hover {
color: #F60;
}
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