-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
76 lines (71 loc) · 1.25 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
body {
background-color:#5c5550;
}
header {
background: white;
padding: 20px 0;
}
#logo {
width: 25%;
}
nav {
position: absolute;
top:0px;
right: 0px;
}
nav li{
display: inline;
margin: 0 0 0 15px;
}
nav a {
text-decoration: none;
text-transform: uppercase;
font-weight: bold;
}
.menu {position: relative;
}
.texto-principal {
margin-right: 20%;
}
h1 {
color: #D3D3D3;
text-align: center;
}
h2 { text-align: center;
color: #f2f1f5;
}
p {
color: #5F9EA0;
}
#imagem-principal {
width: 10%;
margin-left: 80%;
border: 5px dotted salmon;
float: left;
position: absolute;
}
.principal li {
display: inline-block;
border: 10px solid black;
margin-left: 10px;
padding: 10px;
border-radius: 36px 41px 1px 7px;
}
.principal h3 { text-align: center;
font-weight: bolder;}
footer{background: #032829;
padding: 20px;
}
.rodape{
text-align: center;
color: rgb(165, 203, 241);
}
nav li :hover {
color: rgb(217, 18, 18);
font-size: 30px;
}
.principal li :active{
font-size: 40px;
color: aqua;
background-color: rgb(146, 13, 104);
}