-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
85 lines (72 loc) · 1.13 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
body {
background-image: url(background.jpg);
background-size: cover;
}
.contenitore {
width: 850px;
height: 600px;
background-color: rgba(0,0,0,0.5) ;
border-radius: 20px;
padding-top: 15px;
margin: auto;
}
* {
box-sizing: border-box;
}
header {
color: lime;
text-align: center;
margin-top: 25px;
}
main {
margin-left: 75px;
}
button {
font-size: 10px;
}
.tasti {
width: 700px;
height: 35px;
background-color: lime;
text-align: center;
margin-left: auto;
margin-right: auto;
padding-top: 6px;
}
#logo {
width: 20%;
margin: auto;
padding-top:
}
.title {
color: white;
font-size: 20px;
}
.subtitle {
color: white;
font-size: 12px;
display: block;
margin: 1px;
padding: 1px;
}
.paragraph {
margin-top: 15px;
}
#rettangolo1 {
width: 27%;
height: 20px;
background-color: orange;
border-radius: 5px;
}
#rettangolo2 {
width: 60%;
height: 20px;
background-color: green;
border-radius: 5px;
}
#rettangolo3 {
width: 15%;
height: 20px;
background-color: red;
border-radius: 5px;
}