breve/static/main.css

70 lines
1.2 KiB
CSS
Raw Normal View History

2015-04-08 12:47:56 +02:00
@import url(http://fonts.googleapis.com/css?family=Inconsolata:400,700);
2015-04-21 16:13:55 +02:00
@import url(https://cdn.rawgit.com/necolas/normalize.css/master/normalize.css);
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;
2015-04-08 12:47:56 +02:00
}