blob: 884ddbbfff9901ab2f303fe6d1e1c4c0da335e3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
/* Reset and Base Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Mali", sans-serif;
font-size: 11px;
outline: none;
border: none;
}
/* Root Variables */
:root {
--resolution-multiplier: 1;
}
/* HTML and Body Base */
html {
background-color: #000;
color: #fff;
min-width: 1024px;
}
body {
min-height: 100vh;
overflow-x: hidden;
position: relative;
}
/* Element Styles */
hr {
height: 1px;
background: #fff;
}
a:visited {
color: #fff;
}
img {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
image-rendering: -webkit-optimize-contrast;
image-rendering: crisp-edges;
}
/* Video Overlay */
#video-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #000;
opacity: 0.35;
z-index: -99;
}
/* Layout Structure */
#body-wrapper {
position: relative;
z-index: 1;
width: 1000px;
margin: 0 auto;
}
#content-wrapper {
display: flex;
}
/* Sidebar and Main Content */
#left-sidebar {
width: 200px;
border-top: 1px solid #fff;
border-top-left-radius: 14px;
}
#main-content {
width: 580px;
padding: 0 20px;
border-top: 1px solid #fff;
}
#right-sidebar {
width: 200px;
border-top: 1px solid #fff;
}
|