f0ckv1/s/style.css

97 lines
1.4 KiB
CSS
Raw Normal View History

2016-10-20 12:54:08 +00:00
html, body {
max-height: 100%;
width: 100%;
}
body {
margin: 1em auto 3em auto;
background-color: #262626;
color: #fff;
font-family: Monospace;
2016-10-20 21:09:31 +00:00
font-size: 12px;
2016-10-20 12:54:08 +00:00
}
ul#posts {
width: calc(100% - 210px);
margin: 0;
margin-left: 100px;
padding: 0;
list-style: none;
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: row wrap;
flex-flow: row wrap;
justify-content: flex-start;
-webkit-justify-content: flex-start;
}
li.post {
padding: 5px;
width: 128px;
height: 128px;
margin-top: 5px;
line-height: 128px;
-webkit-flex: 1 1 auto;
ms-flex: 1 1 auto;
flex: 1 1 auto;
}
.thumb {
border: 2px solid #4c4a4a;
}
.thumb:hover {
opacity: 0.7;
}
.clear {
clear: both;
padding: 1em 0;
}
a {
color: #9f0;
}
a:hover {
color: #74c100;
}
.medium, .thumbnail {
display: flex;
justify-content: center;
2016-10-21 21:43:35 +00:00
margin-top: 10px;
2016-10-20 12:54:08 +00:00
}
.info {
2016-10-21 21:41:05 +00:00
padding-top: 5px;
2016-10-20 12:54:08 +00:00
}
.id {
text-align: center;
padding-bottom: 10px;
}
.controls {
text-align: center;
padding-top: 10px;
}
.navbar {
text-align: center;
margin-top: 7px;
}
.return {
text-align: center;
}
.irc {
margin: 20px;
}
code {
color: #9df943;
}
.panel {
2016-10-21 21:41:05 +00:00
margin-bottom: 0;
background-color: rgba(34, 34, 34, 0.61);
border: 5px solid #383838;
border-radius: 0px;
padding-left: 10px;
padding-right: 10px;
2016-10-22 15:26:34 +00:00
width: 25%;
float: left;
position: relative;
min-height: 1px;
}