forked from BrunoHenriqueAgostinho/PANCs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStyleBar.css
56 lines (56 loc) · 1016 Bytes
/
StyleBar.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
body{
margin: 0;
padding: 0;
font-family: 'Open Sans Condensed', sans-serif;
}
.bar{
width: 100%;
height: 10%;
position: fixed;
top: 0;
right: 0;
left: 0;
font-size: 75px;
color: white;
display: flex;
padding: 0% 0% 0% 5%;
align-items: center;
justify-content: center;
box-shadow: 10px 3px 10px 1px rgba(0, 0, 0, 0.363);
}
#barBox1{
background-color: rgb(211, 11, 87);
}
#barBox2{
background-color: #F2A516;
}
#barBox3{
background-color: rgb(235, 226, 101);
}
#barBox4{
background-color: rgb(170, 217, 59);
}
#barBox5{
background-color: #3BD962;
}
#barBox6{
background-color: rgb(133, 59, 217);
}
.Rod{
background-color: #6A9AD9;
width: 100%;
min-height: 100px;
float: left;
margin-top: 6%;
display: flex;
align-items: center;
justify-content: center;
}
.informationRod{
color: white;
font-size: 30px;
width: 25%;
float: left;
text-align: center;
text-decoration: none;
}