-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
71 lines (68 loc) · 1.2 KB
/
style.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
#bg {
position: fixed;
z-index: 1;
top: 0;
left: 0;
}
#open {
position: absolute;
left: 10%;
top: 55%;
width: 150px;
height: 50px;
z-index: 100;
display:block;
font-size: 20px;
color: #000000;
background-color: #FFAA00;
appearance: none;
border: 2px solid #FFAA00;
border-radius: 5px;
transition-duration: 0.4s;
font-family: 'Varela Round', sans-serif;
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}
#open:hover {
background-color:#f5edbf;
}
#log-out {
position: absolute;
font-family: 'Varela Round', sans-serif;
right: 1%;
bottom: 5%;
width: 80px;
height: 40px;
z-index: 100;
display:block;
font-size: 16px;
color: #3c3b3b;
background-color: #FFAA00;
border: 2px solid #FFAA00;
appearance: none;
border-radius: 5px;
transition-duration: 0.4s;
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}
#log-out:hover {
background-color:#ed824c;
}
#err {
left: 50%;
top: 50%;
font-size: 40px;
z-index: 10;
}
#img {
position: absolute;
height: 30%;
z-index: 100;
}
#cred {
font-size: 16px;
color: #3c3b3b;
position: absolute;
font-family: 'Varela Round', sans-serif;
z-index: 100;
bottom: 4%;
right: 8%;
}