f0ckv1/s/style.css

82 lines
1.2 KiB
CSS
Raw Normal View History

2016-08-30 12:26:57 +00:00
html, body {
height: 100%;
2016-09-02 11:36:39 +00:00
width: 100%;
2016-08-30 12:26:57 +00:00
}
body {
2016-08-30 12:26:57 +00:00
margin: 1em auto 3em auto;
background-color: #262626;
color: #fff;
font-family: Monospace;
}
2016-09-02 11:36:39 +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;
2016-09-05 08:40:11 +00:00
justify-content: flex-start;
-webkit-justify-content: flex-start;
2016-09-02 11:36:39 +00:00
}
li.post {
padding: 5px;
width: 128px;
height: 128px;
margin-top: 5px;
line-height: 128px;
-webkit-flex: 1 1 auto;
2016-09-05 08:40:11 +00:00
ms-flex: 1 1 auto;
2016-09-02 11:36:39 +00:00
flex: 1 1 auto;
}
2016-08-30 12:26:57 +00:00
.thumb {
border: 2px solid #4c4a4a;
}
.thumb:hover {
opacity: 0.7;
}
.clear {
clear: both;
padding: 1em 0;
}
a {
color: #9f0;
}
a:hover {
color: #74c100;
}
2016-08-30 12:26:57 +00:00
.medium {
display: flex;
justify-content: center;
align-items: center;
}
.info {
text-align: center;
}
.id {
text-align: center;
padding-bottom: 10px;
}
.controls {
text-align: center;
2016-08-16 18:26:33 +00:00
padding-top: 10px;
}
.navbar {
text-align: center;
2016-09-02 11:36:39 +00:00
margin-top: 7px;
}
.return {
text-align: center;
}
.irc {
margin: 20px;
}
code {
color: #9df943;
2016-08-18 06:20:35 +00:00
}