2018-04-16 11:15:00 +01:00
|
|
|
html {
|
2017-02-20 15:00:46 +00:00
|
|
|
height: 100%;
|
2018-04-16 11:15:00 +01:00
|
|
|
width: 100%;
|
2017-02-20 13:57:52 +00:00
|
|
|
}
|
|
|
|
|
2018-04-16 11:15:00 +01:00
|
|
|
body {
|
|
|
|
z-index: 1;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
background-position: center;
|
|
|
|
background-attachment: fixed;
|
|
|
|
}
|
2017-02-20 13:57:52 +00:00
|
|
|
|
2018-04-20 11:42:53 +01:00
|
|
|
.itemlist {
|
2018-04-16 11:15:00 +01:00
|
|
|
border-radius: 6px;
|
|
|
|
background-color: rgba(0, 0, 0, .4);
|
2018-04-13 12:04:09 +01:00
|
|
|
padding: 20px;
|
2018-04-20 11:42:53 +01:00
|
|
|
box-sizing: border-box;
|
2018-04-13 12:04:09 +01:00
|
|
|
}
|
|
|
|
|
2018-04-20 11:42:53 +01:00
|
|
|
.itemlist a {
|
2018-04-13 12:04:09 +01:00
|
|
|
color: #fff;
|
|
|
|
}
|
2017-02-20 13:57:52 +00:00
|
|
|
|
2018-04-20 11:42:53 +01:00
|
|
|
#wrapper {
|
2017-02-20 15:00:46 +00:00
|
|
|
font-size: 80px;
|
|
|
|
position: fixed;
|
|
|
|
left: 50%;
|
|
|
|
top: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
2017-02-21 14:50:53 +00:00
|
|
|
padding-bottom: 3px;
|
|
|
|
width: fit-content;
|
|
|
|
height: auto;
|
2018-04-16 11:15:00 +01:00
|
|
|
max-width: 80%;
|
2017-02-21 14:50:53 +00:00
|
|
|
max-height: 85%;
|
2017-02-20 15:00:46 +00:00
|
|
|
overflow: auto;
|
|
|
|
display: flex;
|
2018-04-16 13:54:25 +01:00
|
|
|
overflow-y: scroll;
|
2017-02-20 13:57:52 +00:00
|
|
|
}
|
2017-02-20 15:00:46 +00:00
|
|
|
|
2018-04-20 11:42:53 +01:00
|
|
|
#wrapper a {
|
2018-04-16 11:15:00 +01:00
|
|
|
transition: .3s all;
|
|
|
|
}
|
|
|
|
|
2018-04-20 11:42:53 +01:00
|
|
|
#wrapper a:hover {
|
2018-04-16 11:15:00 +01:00
|
|
|
color: #c4c4c4;
|
|
|
|
}
|
|
|
|
|
2018-04-20 11:42:53 +01:00
|
|
|
#wrapper .link {
|
2018-04-16 11:15:00 +01:00
|
|
|
display: inline-block;
|
|
|
|
width: 33%;
|
|
|
|
float: left;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2018-04-20 11:42:53 +01:00
|
|
|
#wrapper::-webkit-scrollbar {
|
2018-04-16 11:15:00 +01:00
|
|
|
width: 10px;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
2017-02-20 13:57:52 +00:00
|
|
|
|
2018-04-20 11:42:53 +01:00
|
|
|
#wrapper::-webkit-scrollbar-thumb {
|
2018-04-16 11:15:00 +01:00
|
|
|
border-radius: 6px;
|
|
|
|
-webkit-box-shadow: inset 0 0 3px rgba(0,0,0,.4);
|
|
|
|
background-color: rgba(255,255,255,.2);
|
|
|
|
}
|