-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (51 loc) · 748 Bytes
/
style.css
File metadata and controls
61 lines (51 loc) · 748 Bytes
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
*{
margin: 0;
font-family: 'Poppins', sans-serif;
}
body{
background-image: url("background.jpg");
background-repeat: no-repeat;
background-size: cover;
color: white;
}
.riquadro{
background-color: rgba(0,0,0,0.5);
margin: 1% 20%;
border-radius: 20px;
padding: 5%;
}
img{
margin: auto;
display: block;
height: 120px;
}
h1{
color: lime;
font-size: 30px;
text-align: center;
}
nav{
background-color: lime;
padding: 1%;
text-align: center;
}
main>div{
margin-top: 20px;
}
h2{
display: inline-block;
}
.barra{
background-color: orange;
height: 30px;
width: 350px;
border-radius: 5px;
}
.green{
background-color: green;
width: 600px;
}
.brown{
background-color: brown;
width: 150px;
}