-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
101 lines (90 loc) · 1.65 KB
/
main.css
File metadata and controls
101 lines (90 loc) · 1.65 KB
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
94
95
96
97
98
99
100
101
body {
background: #fff;
font-family: 'Times New Roman', Times, serif;
font-size: 12px;
line-height: 12px;
}
#link {
color: black;
}
.header--section {
display: flex;
flex-direction: column;
margin: 10% 5% 5% 5%;
}
#dys--toolbar-button {
cursor: pointer;
border: none;
box-shadow: 0px 0px 20px rgba(48, 48, 48, 0.26);
position: fixed;
z-index: 10000;
top: 0;
left: 0;
height: auto;
padding: 1%;
font-weight: bold;
background: #f5673c;
color: white;
outline: none;
}
#dys--toolbar {
font-size: 12px;
box-shadow: 0px 0px 20px rgba(48, 48, 48, 0.26);
overflow: hidden;
position: absolute;
top: 0;
right: 0;
height: 0;
width: 100vw;
transition: height 2s;
background: #f3f0ef;
}
#dys--toolbar--content {
padding-top: 0.5%;
width: 100vw;
display: flex;
}
.dys--toolbar--choice {
line-height: 12px;
display: flex;
margin-right: 5%;
justify-content: center;
flex-direction: column;
}
.dys--toolbar--choice:first-child {
margin-left: 5%;
}
.dropdown {
font-family: 'Helvetica';
flex-direction: column;
}
.dys--toolbar--button {
border-radius: 4px;
margin: 4% 0 4% 0;
outline: none;
cursor: pointer;
width: 50px;
border: none;
box-shadow: 0px 0px 20px rgba(48, 48, 48, 0.26);
}
.nonclick {
pointer-events: none;
}
/* Dropup content (Hidden by Default) */
.dropup-content {
display: none;
position: fixed;
background-color: #f1f1f1;
min-width: 50px;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}
.dropup-content > #font-type {
width: 100px;
}
/* Links inside the dropup */
.dropup-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}