-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
94 lines (93 loc) · 1.42 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
90
91
92
93
94
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
.contenitore{
width: 800px;
margin: 0 auto;
margin-top: 20px;
border-radius: 10px;
background-color: black;
background-color: rgba(0,0,0,0.29);
padding: 30px;
}
body{
background-image: url("img/sfondo.jpg");
background-size: cover;
}
.logo{
width: 20%;
height: 20%;
margin: 0 auto;
}
img{
width: 100%;
height: 100%;
}
header>h1{
color: lime;
font-family: sans-serif;
text-align: center;
font-size: 25px;
}
nav{
background-color: lime;
padding-top: 5px;
padding-bottom: 5px;
}
.bottoni{
margin: 0 auto;
width: 280px;
}
input[type="submit"]{
border-radius: 5px;
padding: 3px;
}
main{
margin-top:10px;
}
.titolo{
color:white;
font-size: 25px;
font-family: fantasy;
}
.freccia_dx{
color: white;
}
.info_Monopattino{
color:white;
font-family: fantasy;
font-size: 15px;
}
.stato_carica{
color: white;
font-size:20px;
}
.margine{
margin-bottom: 15px;
}
#carica1{
width: 250px;
height: 20px;
background-color: coral;
border-radius: 5px;
}
#carica2{
width: 400px;
height: 20px;
background-color: limegreen;
border-radius: 5px;
}
#carica3{
width: 100px;
height: 20px;
background-color: red;
border-radius: 5px;
}
footer{
color: grey;
font-size: 10px;
margin-top: 20px;
color:rgba(0, 0, 0, 0.5);
}