-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
83 lines (75 loc) · 1.18 KB
/
main.css
File metadata and controls
83 lines (75 loc) · 1.18 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
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
#project {
animation: fadeIn 0.5s ease forwards;
position: fixed;
z-index: 10;
top: 8%;
left: 5%;
width: 25%;
height: 20%;
background-color: #eee;
display: none;
border-radius: 10px;
}
.hr {
background-color: #666;
color: white;
border: none;
font-size: 16px;
}
#fh {
position: fixed;
z-index: 10;
top: 0%;
left: 5%;
height: 5%;
width: 95%;
background-color: #666;
}
a { color: black; }
fieldset {color: gray; }
#map {
animation: fadeIn 0.5s ease forwards;
position: fixed;
z-index: 10;
top: 8%;
left: 17%;
width: 20%;
height: 10%;
background-color: #eee;
display: none;
border-radius: 10px;
}
#pb {
animation: fadeIn 0.5s ease forwards;
position: fixed;
z-index: 10;
top: 8%;
left: 35%;
width: 30%;
height: 12%;
background-color: #eee;
display: none;
border-radius: 10px;
}
#load {
position: fixed;
left: 47.2%;
top: 55%;
}
#loading {
position: fixed;
height: 100%;
width: 100%;
top: 0%;
left: 0%;
z-index: 100;
background-color: white;
}