f0ckv2/public/css/f0ck.css

95 lines
1.5 KiB
CSS
Raw Normal View History

2019-04-25 19:25:38 +00:00
/*Theming*/
:root {
--primary-color: #302AE6;
--secondary-color: #536390;
--font-color: #424242;
--bg-color: #090f13;
--heading-color: #292922;
}
[data-theme="light"] {
--primary-color: #9A97F3;
--secondary-color: #818cab;
--font-color: #e1e1ff;
--bg-color: black;
--heading-color: #818cab;
}
/*End of Theming*/
2019-05-15 17:51:11 +00:00
html, body {
2019-05-07 20:23:19 +00:00
height: 100%;
2019-05-15 17:51:11 +00:00
width: 100%;
2019-05-07 20:23:19 +00:00
margin: 0;
overflow: hidden;
2019-05-15 17:51:11 +00:00
background-color: var(--bg-color);
color: var(--font-color);
2019-05-07 20:23:19 +00:00
}
2019-05-15 17:51:11 +00:00
div.pageWrapper {
2019-05-07 20:23:19 +00:00
height: 100%;
2019-05-15 17:51:11 +00:00
width: 100%;
display: grid;
grid-template-columns: 1fr;
grid-template-rows: 0.2fr 2.6fr 0fr;
2019-04-25 19:25:38 +00:00
}
2019-05-15 17:51:11 +00:00
div#header, div#footer {
z-index: 9999;
2019-05-07 20:23:19 +00:00
background-color: #292922;
2019-04-25 19:25:38 +00:00
}
2019-05-15 17:51:11 +00:00
2019-05-07 20:23:19 +00:00
#logoHead {
margin: 6px 0 0 4px;
padding: 0;
font-size: 14px;
2019-04-25 19:25:38 +00:00
}
2019-05-07 20:23:19 +00:00
#logo {
padding: 1px 4px 1px 4px;
height: 48px;
}
#itemInfo {
display: none;
height: 61px;
position: absolute;
left: 200px;
right: 270px;
top: 4px;
}
#itemInfo div.infoText {
margin-top: 3px;
}
#pagePosition, #itemPosition {
position: absolute;
right: 8px;
2019-05-15 17:51:11 +00:00
top: 6px;
2019-05-07 20:23:19 +00:00
padding: 0;
color: #7d7b6a;
background-color: #333;
}
#pagePosition span, #itemPosition span {
color: #9d9b8a;
}
#pagePosition {
display: block;
}
#itemPosition {
display: none;
2019-04-25 19:25:38 +00:00
}
2019-05-15 17:51:11 +00:00
div#content {
position: relative;
2019-05-11 09:20:48 +00:00
}
2019-05-15 17:51:11 +00:00
div.wrapper {
display: none;
2019-05-11 09:20:48 +00:00
position: absolute;
top: 0;
left: 0;
2019-05-15 17:51:11 +00:00
height: 100%;
width: 100%;
}
div#howtowrapper {
overflow: hidden;
background-color: rgba(0, 0, 0, 0.9);
z-index: 999;
2019-05-11 09:20:48 +00:00
}