-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.css
78 lines (68 loc) · 1.25 KB
/
index.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
html, body {
padding: 0;
margin: 0;
width: 100%;
height: 100%;
}
#main-canvas {
display: block;
width: 100%;
height: 100%;
}
#file-modal-back {
display: none;
position: absolute;
top: 0; bottom: 0;
left: 0; right: 0;
background-color: rgba(0,0,0,0.2);
}
#file-modal-close {
position: absolute;
right: 10px;
top: 5px;
color: black;
font-size: 2em;
transition: .3s ease;
}
#file-modal-close:hover {
cursor: pointer;
color: orangered;
transform: scale(1.1);
}
#file-modal {
text-align: center;
background-color: white;
width: 60%;
margin: 25px auto;
padding: 25px;
border-radius: 5px;
}
#file-modal h3 {
font-size: 2em;
font-family: sans-serif;
font-weight: lighter;
letter-spacing: 3px;
margin: 0;
margin-top: 12.5px;
margin-bottom: 22.5px;
}
#file-in {
display: none;
}
#file-in-but {
margin: 0;
padding: 5px 12.5px;
border-radius: 5px;
border: 2px solid thistle;
background-color: rgba(0,0,0,0);
font-family: monospace;
font-size: 1.25em;
transition: .3s ease;
}
#file-in-but:hover {
cursor: pointer;
transform: scale(1.05);
}
input:focus, button:focus {
outline: none !important;
}