-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
59 lines (58 loc) · 892 Bytes
/
style.css
File metadata and controls
59 lines (58 loc) · 892 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
52
53
54
55
56
57
58
59
.blue{
color: #30A9FF;
}
.blue-active{
color: #2CCBE8;
}
.blue-light{
color: #3EFFE9;
}
.green-active{
color: #2CE89D;
}
.green{
color: #30FF72;
}
body{
margin: 0px;
background-color: #060505;
}
#app{
width: 100%;
height: 100%;
}
#app img{
width: 18rem;
display: flex;
position: relative;
/* left: 50%; */
top: 10rem;
}
#app a{
background-color: #FFB229;
height: 0.5rem;
width: 28%;
border: none;
color: #f0ffff;
font-size: 20px;
font-weight: bold;
position: relative;
left: 50%;
border-radius: 2rem;
padding: 2.35rem;
text-align: center;
}
#app a:link{
text-decoration: none;
}
#app a:hover{
background-color: #060505;
border: 1px solid #FFB229;
}
#app .footer{
position: absolute;
display: inline-flex;
top: 37rem;
justify-content: left;
right: 38rem;
}