-
Notifications
You must be signed in to change notification settings - Fork 0
/
fractal_css.css
93 lines (93 loc) · 1.68 KB
/
fractal_css.css
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
90
91
92
93
.no-margins {
left: 0;
top: 0;
margin: 0;
position: fixed;
overflow: hidden;
width: 100vw;
height: 100vh;
}
.header-bar {
top: 0px;
left: 0px;
margin: 0px;
position: fixed;
width: 100vw;
height: 9vh;
background-color: #4f0147;
opacity: 0.8;
}
.title-left {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
overflow: hidden;
height: inherit;
width: 50%;
top: 0px;
left: 0px;
position: fixed;
}
.title-right {
display: flex;
flex-direction: row;
justify-content: flex-end;
align-items: center;
text-align: center;
overflow: hidden;
text-align: center;
position: fixed;
height: inherit;
width: 45%;
top: 0px;
right: 0px;
opacity: 0.8;
}
.title-text {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
overflow: hidden;
color: white;
width: auto;
height: 84%;
padding: 0px 10px 0px 10px;
text-align: center;
opacity: 0.825;
}
.divider {
margin: 0px;
padding: 0px;
top: 9vh;
left: 0px;
width: 100%;
height: 1%;
position: fixed;
background-color: #290025;
}
.icon-box {
display: flex;
justify-content: center;
align-items: center;
height: auto;
width: auto;
padding: 5px 7px 5px 7px;
margin-right: 5px;
border-radius: 6px;
font-size: 20px;
fill: gray;
color:white;
opacity: 0.9;
}
.icon-box:hover{
background: gray;
}
.selectDisable {
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none;
}