-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
80 lines (69 loc) · 1.32 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
@charset "utf-8";
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
background-image: url(./Imagens/wallpaper002.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
color: #fff;
}
.header{
text-align: center;
color: aliceblue;
background-color: rgb(107, 107, 161);
padding: 20px;
}
.nav{
padding-top: 15px;
text-align: center;
background-color: rgba(0, 0, 0, 0.5);
}
.nav > a {
text-decoration:none;
padding: 15px;
color: white;
font-family: 'Courier New', Courier, monospace;
font-size: 1.1em;
transition: color 0.3s;
}
.nav > a:hover{
color: red;
}
.main{
padding: 20px;
text-align: justify;
margin: 20px;
border-radius: 10px;
box-shadow: 4px 4px 7px black;
background-color: blue;
color: aliceblue;
max-width: 1000px;
margin: 30px auto;
}
.quadrado{
display: inline-block;
border: 2px solid black;
border-radius: 10px;
background-color: aliceblue;
width: 300px;
height: 300px;
}
.qrcodi{
padding-left:190px;
}
div#q1{
background-color: blue;
margin: 10px;
}
div#q2{
background-image: linear-gradient(to bottom, yellow, red );
margin: 10px;
}
div#q3{
background-image: url(./Imagens/pattern003.png);
margin: 10px;
}