filebrowser/static/css/main.css

106 lines
1.5 KiB
CSS
Raw Normal View History

2015-09-13 19:37:20 +00:00
body {
font-family: 'Roboto', sans-serif;
color: #212121;
height: 100%;
width: 100%;
2015-09-13 19:37:20 +00:00
}
2015-09-14 17:18:26 +00:00
header {
position: fixed;
top: 0;
left: 0;
height: 3em;
width: 100%;
background-color: #EEE;
padding: 0 2em;
box-sizing: border-box;
z-index: 999;
color: #555;
2015-09-14 17:18:26 +00:00
}
header nav {}
header nav ul {
margin: 0;
padding: 0;
display: -webkit-box;
/* OLD - iOS 6-, Safari 3.1-6 */
display: -moz-box;
/* OLD - Firefox 19- (buggy but mostly works) */
display: -ms-flexbox;
/* TWEENER - IE 10 */
display: -webkit-flex;
/* NEW - Chrome */
display: flex;
2015-09-14 17:18:26 +00:00
}
2015-09-14 17:18:26 +00:00
header nav ul li {
list-style-type: none;
display: inline-block;
vertical-align: middle;
2015-09-14 17:18:26 +00:00
}
header nav ul li:last-child {
margin-left: auto;
}
2015-09-14 17:18:26 +00:00
header nav img {
height: 2em;
}
2015-09-14 17:18:26 +00:00
header nav ul li a {
padding: 0.5em 0.5em;
line-height: 2em;
display: block;
text-decoration: none;
color: inherit;
transition: .5s ease background-color;
2015-09-14 17:18:26 +00:00
}
2015-09-14 17:18:26 +00:00
header nav ul li a:hover {
background-color: rgba(255, 255, 255, 0.57);
2015-09-14 17:18:26 +00:00
}
2015-09-14 17:18:26 +00:00
main {
top: 3em;
position: relative;
2015-09-13 19:37:20 +00:00
}
2015-09-13 19:37:20 +00:00
.content {
margin: 1.5em auto;
width: 80%;
max-width: 800px;
2015-09-13 19:37:20 +00:00
}
2015-09-13 19:37:20 +00:00
textarea {
width: 100%;
min-height: 50em;
resize: vertical;
border: 0;
font-family: inherit;
2015-09-14 17:18:26 +00:00
}
/* FORMS */
2015-09-14 17:18:26 +00:00
form {}
2015-09-14 09:46:31 +00:00
2015-09-14 17:18:26 +00:00
form input {
color: rgba(0, 0, 0, 0.41);
width: 15em;
line-height: 1.25em;
margin: .5em 0;
border: 1px solid #fff;
transition: .5s ease-out all;
}
2015-09-14 17:18:26 +00:00
form input:focus {
color: inherit;
outline: 0;
border-bottom: 1px solid #2196F3;
2015-09-14 09:46:31 +00:00
}
2015-09-14 17:18:26 +00:00
form label {
width: 10.5em;
display: inline-block;
}