-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
103 lines (100 loc) · 2.04 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
*{
margin: 0;
padding: 0;
}
:root {
--cor-principal: rgb(130, 35, 1);
--background-color: rgba(12, 12, 15, 0.87);
}
body{
background:
linear-gradient(rgba(0, 0, 0, 0.737), rgba(0, 0, 0, 0.847)),
url(https://bkpsitecpsnew.blob.core.windows.net/uploadsitecps/sites/1/2020/10/Diadema-Etec-Juscelino-Kubistchek-WhatsApp-Image-2022-01-20-at-12.09.57-1.jpeg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
font-family: "Montserrat", sans-serif;
}
.menu{
background-color: var(--background-color);
width: 100%;
height: 100px;
display: flex;
justify-content: center;
align-items: center;
position: fixed;
top: 0px;
}
.menu nav {
width: 30%;
display: flex;
justify-content: space-around;
}
.menu nav a{
color: white;
text-decoration: none;
font-size: 18px;
}
.menu nav a:hover{
font-weight: bold;
color: var(--cor-principal);
}
.titulo{
width: 30%;
padding-top: 50px;
font-size: 50%;
}
h1{
color: white;
padding-top: 130px;
display: flex;
justify-content: center;
font-size: 40px;
text-decoration: underline;
text-decoration-color: orangered;
text-decoration-thickness: 5px;
}
.principal{
background-color:var(--background-color);
margin: 50px;
color: white;
display: flex;
justify-content: center;
flex-direction: column;
border: solid orangered;
}
.principal p{
padding: 20px;
font-size: 17px;
}
.maps-icon{
width: 250px;
}
.site-icon{
width: 150px;
}
.links{
display: flex;
justify-content: center;
align-items: center;
height: 200px;
margin-top: 20px;
margin-bottom: 70px;
margin-right: 20px;
transition: transform 0.3s ease;
}
.links div :hover{
transform: scale(1.1);
}
footer{
width: 100%;
height: 50px;
background-color:var(--background-color) ;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
position: fixed;
bottom: 0px;
color: white;
}