breve/static/main.css

83 lines
1.4 KiB
CSS
Raw Normal View History

2019-05-15 02:56:12 +02:00
@import url('normalize.css');
@font-face {
font-family: Inconsolata;
src: local(Inconsolata),
url('inconsolata-regular.woff') format('woff');
}
@font-face {
font-family: Inconsolata;
font-weight: bold;
src: local(Inconsolata), local(Inconsolata Bold),
url('inconsolata-bold.woff') format('woff');
}
2015-04-08 12:47:56 +02:00
body {
2015-04-21 16:13:21 +02:00
background-color: #181b20;
color: #9b9081;
2015-04-08 12:47:56 +02:00
font-family: Inconsolata;
2015-04-21 16:13:55 +02:00
height: 100vh;
display: flex;
flex-direction: column;
justify-content: space-between;
2015-04-08 12:47:56 +02:00
}
2015-04-21 16:13:55 +02:00
#center { align-self: center }
2015-04-08 12:47:56 +02:00
2015-04-21 16:13:55 +02:00
body,input { font-size: 1.1em; }
2015-04-08 12:47:56 +02:00
2015-04-08 23:25:07 +02:00
footer {
font-size: .9em;
2015-04-21 16:13:21 +02:00
color: #595450;
padding: 1em;
2015-04-08 23:25:07 +02:00
}
2015-04-21 16:13:55 +02:00
footer span {
float: right;
margin-right: 2em;
2015-04-08 23:25:07 +02:00
}
h1 {
2015-04-08 12:47:56 +02:00
font-size: 1.8em;
font-weight: 700;
2015-04-21 16:13:21 +02:00
color: #515e66;
margin: 1em 0 0 1em;
2015-04-08 12:47:56 +02:00
}
2015-04-21 16:13:21 +02:00
h1 a { color: #515e66 !important }
2015-04-08 23:26:05 +02:00
h2 {
font-size: 1.2em;
margin: .5em 0 0 1.5em;
}
2015-04-08 12:47:56 +02:00
input[type="text"] {
border: none;
2015-04-21 16:13:21 +02:00
border-bottom: .15em dashed #2b2c2e;
2015-04-08 12:47:56 +02:00
outline: none;
background: transparent;
2015-04-21 16:13:21 +02:00
color: #776049;
2015-04-08 12:47:56 +02:00
padding: 0 2px;
2015-05-10 15:36:37 +02:00
margin: 0 .5em;
2015-04-08 12:47:56 +02:00
}
input[type="submit"] {
2015-04-21 16:13:21 +02:00
border: .12em solid #2b2c2e;
2015-04-08 12:47:56 +02:00
background: transparent;
2015-04-21 16:13:21 +02:00
color: #775750;
2015-04-08 12:47:56 +02:00
cursor: pointer;
2015-04-21 16:13:55 +02:00
padding: .2em .4em!important;
2015-04-08 12:47:56 +02:00
}
a:link, a:visited {
2015-04-21 16:13:21 +02:00
color: #776049;
2015-04-08 12:47:56 +02:00
text-decoration: none;
}
2015-04-08 23:26:05 +02:00
a:hover {
2015-04-08 12:47:56 +02:00
text-decoration: underline;
transition: color .5s ease;
2015-04-21 16:13:21 +02:00
color: #775750;
2019-05-15 02:56:12 +02:00
}