theolem.org/themes/theo_lem/static/css/main.css

90 lines
1.4 KiB
CSS
Raw Normal View History

2020-05-07 16:29:37 +00:00
@font-face {
font-family: happy;
src: url('/theme/css/fonts/Happy-Times-at-the-IKOB-master/fonts/webfonts/happy-times-NG_regular_master_web.ttf');
}
2020-04-29 18:17:21 +00:00
* {
background-color: white;
2020-05-07 16:29:37 +00:00
font-family: 'happy';
}
a {
text-decoration: none;
color: black;
2020-04-29 18:17:21 +00:00
}
.navbar {
font-size: 1.5em;
width: 100%;
height: 10px;
background-color: white;
margin-top: 10px;
2020-05-07 16:29:37 +00:00
padding-bottom: 25px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
2020-05-07 16:29:37 +00:00
}
.navbar a {
padding-left: 40px;
padding-right: 40px;
}
.navbar :hover {
text-decoration: underline;
2020-04-29 18:17:21 +00:00
}
2020-05-07 16:29:37 +00:00
.footer {
margin-top: 50px;
2020-05-10 14:23:09 +00:00
margin-bottom: 20px;
2020-05-07 16:29:37 +00:00
text-align: center;
}
.footer a {
text-decoration: none;
padding-right: 20px;
padding-left: 20px;
}
2020-04-29 18:17:21 +00:00
.banner-img {
width: 100%;
2020-04-30 16:23:03 +00:00
border: solid;
border-width: 1px;
2020-04-29 18:17:21 +00:00
}
2020-05-07 16:29:37 +00:00
#rss-logo {
width: 20px;
height: 20px;
}
#git-logo {
width: 20px;
height: 20px;
}
2020-04-29 18:17:21 +00:00
.content {
margin-top: 50px;
margin-left: 15%;
2020-05-10 14:23:09 +00:00
max-width: 60%;
font-size: 1.2em;
}
.content p a {
color: #737373;
2020-04-29 18:17:21 +00:00
}
2020-05-07 16:29:37 +00:00
.content a:hover {
text-decoration: underline;
}
2020-04-29 18:17:21 +00:00
.article-anchor {
padding-left: 10px;
padding-right: 10px;
}
.title-block {
text-align: left;
}
2020-05-07 16:29:37 +00:00
code {
background-color: #cccccc;
font-style: italic;
}
blockquote {
margin-left: 20px;
font-style: italic;
font-size: 1.5em;
}
@media print {
.banner {
visibility: hidden;
}
.navbar {
visibility: hidden;
}
}