-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
89 lines (75 loc) · 1.47 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
* {
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
background-image: url(background.jpg);
background-size: cover;
background-repeat: no-repeat;
}
.container{
margin-left: auto;
margin-right: auto;
margin-top: 30px;
border-radius: 2%;
background-color: rgba(0, 0, 0, 0.473);
height: 870px;
width: 1200px;
padding: 100px;
}
img {
display: block;
margin-left: auto;
margin-right: auto;
width: 25%;
}
h1 {
color: #00dd00;
margin: auto;
text-align: center;
font-size: 30px;
}
.navbar {
background-color: #00dd00;
height: 45px;
text-align: center;
padding: 9px;
/* ho utilizzato il padding per centrare verticalmente i pulsanti poichè nel fundamentals camp non abbiamo utilizzato flexbox (a differenza della coding week di giugno) */
}
div > button {
font-size: 12px;
}
section {
margin-bottom: 10px;
}
h2 {
display: inline-block;
font-size: 23px;
color: white;
margin-bottom: 0;
}
span {
display: block;
color: rgba(255, 255, 255, 0.76);
}
.location:before {
content: "\21A6";
}
.battery {
border-radius: 5px;
}
#first {
background-color: #f5b453;
height: 30px;
width: 35%;
}
#second {
background-color: #1ec31e;
height: 30px;
width: 60%;
}
#third {
background-color: #be4141;
height: 30px;
width: 15%;
}