simpler-dash/common/css/main.css

66 lines
957 B
CSS
Raw Normal View History

html {
2017-02-20 15:00:46 +00:00
height: 100%;
width: 100%;
}
body {
z-index: 1;
height: 100%;
width: 100%;
background-position: center;
background-attachment: fixed;
}
2018-04-20 11:42:53 +01:00
.itemlist {
border-radius: 6px;
background-color: rgba(0, 0, 0, .4);
padding: 20px;
2018-04-20 11:42:53 +01:00
box-sizing: border-box;
}
2018-04-20 11:42:53 +01:00
.itemlist a {
color: #fff;
}
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;
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-05-29 01:49:00 +01:00
overflow-y: auto;
}
2017-02-20 15:00:46 +00:00
2018-04-20 11:42:53 +01:00
#wrapper a {
transition: .3s all;
}
2018-04-20 11:42:53 +01:00
#wrapper a:hover {
color: #c4c4c4;
}
2018-04-20 11:42:53 +01:00
#wrapper .link {
display: inline-block;
width: 33%;
float: left;
text-align: center;
}
2018-04-20 11:42:53 +01:00
#wrapper::-webkit-scrollbar {
width: 10px;
background-color: transparent;
}
2018-04-20 11:42:53 +01:00
#wrapper::-webkit-scrollbar-thumb {
border-radius: 6px;
-webkit-box-shadow: inset 0 0 3px rgba(0,0,0,.4);
background-color: rgba(255,255,255,.2);
2018-05-29 01:49:00 +01:00
}