-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
57 lines (48 loc) · 967 Bytes
/
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
body, html {
margin: 0;
padding: 0;
height: 100%;
font-family: Arial, sans-serif;
background-color: #252525;
}
.container {
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100%;
}
.navbar {
background-color: #a4d227;
display: flex;
justify-content: space-around;
align-items: flex-end;
padding: 10px 0;
position: relative;
border-top-left-radius: 50%;
border-top-right-radius: 50%;
}
.nav-item {
display: flex;
justify-content: center;
align-items: flex-end;
position: relative;
top: 0;
}
.active {
width: 50px;
height: 50px;
background-color: white;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
padding: 10px;
}
.active img {
width: 50%;
height: auto;
}
#screen{
text-align: center;
color: black;
}