-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy path14d.css
More file actions
51 lines (45 loc) · 751 Bytes
/
14d.css
File metadata and controls
51 lines (45 loc) · 751 Bytes
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
body {
height: 3000px;
}
.right-sidebar {
background-color: green;
color: white;
position: fixed;
right: 0;
top: 0;
bottom: 0;
width: 100px;
}
.overlay {
background-color: rgba(0, 0, 0, 0.5);
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
display: flex;
justify-content: center;
align-items: center;
}
.modal {
/* shift modal div to right */
position: fixed;
right: 70px;
background-color: white;
width: 300px;
padding-top: 15px;
padding-bottom: 15px;
padding-left: 15px;
padding-right: 15px;
border-radius: 5px;
}
.modal-title {
font-family: Arial;
font-weight: bold;
font-size: 24px;
margin-bottom: 12px;
}
.modal-content {
font-family: Arial;
margin-bottom: 12px;
}