-
Notifications
You must be signed in to change notification settings - Fork 0
/
estilo.css
114 lines (114 loc) · 1.81 KB
/
estilo.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
body{
margin 0;
padding 0;
background-image: url("Imagens/Hotarubi-no-mori1.jpg");
background-repeat: no-repeat;
background-size: cover;
font-family: Times-New-Roman, Times, serif;
}
#NavBar ul{
list-style-type: none;
text-decoration-style: none;
background-color: #3498db;
height: 50px;
text-align: center;
margin-top: -10px;
}
#NavBar ul .NavItens{
display: inline;
}
#NavBar ul .NavItens a{
text-decoration: none;
font-size: 20px;
margin: 15px;
padding: 13px;
display: inline-block;
color: #ffffff;
margin-top: 1px;
overflow: hidden;
}
#NavBar ul .NavItens a:hover{
color: #000000;
}
#NavBar ul .NavItens #Ativo{
background-color: #2980b9;
}
#NavBar ul #logo{
display: inline;
}
#NavBar ul #Logo a{
text-decoration: none;
float: left;
padding: 14px;
padding-bottom: 8px;
display: inline-block;
font-size: 28px;
color: #1B1464;
margin-top: -73px;
}
#NavBar ul #Logo a:hover{
color: #ffffff;
}
#Texto{
padding: 15px;
}
#Texto h1{
color: #ffffff;
font-size: 72px;
margin-left: 50px;
}
#Texto p{
color: #ffffff;
font-size: 24px;
margin-left: 50px;
margin-top: -40px;
text-decoration: underline;
}
@media(max-width: 1500px){
body{
background-size: 1500px;
}
}
@media(max-width: 1350px){
body{
background-size: 1350px;
}
}
@media(max-width: 900px){
#NavBar ul #Logo a{
font-size: 22px;
padding: 15px;
padding-bottom: 9px;
margin-left: -30px;
margin-top: -71px;
}
}
@media(max-width: 750px){
#NavBar ul #Logo{
visibility: hidden;
}
}
@media(max-width: 600px){
#NavBar ul #Logo{
visibility: hidden;
}
#NavBar ul{
height: 40px;
}
#NavBar ul .NavItens a{
font-size: 15px;
margin: 10px;
padding: 15px;
padding-bottom: 10px;
margin-top: -2px;
}
#Texto h1{
margin-top: 58px;
font-size: 66px;
margin-left: 30px;
}
#Texto p{
font-size: 22px;
margin-left: 30px;
}
}