-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
65 lines (55 loc) · 1.23 KB
/
main.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
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Iceland&family=Six+Caps&display=swap');
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css");
*{
margin: 0;
padding: 0;
list-style: none;
text-decoration: none;
box-sizing: border-box;
}
:root{
--font-primary: "Oswald",sans-serif;
--font-secondary: "Iceland",cursive;
--cor-primary: #6e6e6e;
--cor-secundary: #FFFFFF;
--cor-tertiary: #fd7b02;
}
::selection {
color : #FFFFFF;
background: #232526;
}
.container{
background-color: rgba(8, 8, 8, 0.74);
overflow: hidden;
}
body {
background-image: url("img/Fundo.jpg");
background-size: cover;
background-color: #1e2122;
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
position: relative;
}
#bg{
width: 100vw;
height: 100vh;
overflow: none;
}
header{
padding-top: 5vh;
height: 25vh;
}
main{
display: flex;
height: calc(100vh - 40vh);
width: 100vw;
flex-direction: row;
justify-content: space-evenly;
padding-top: 60px;
}
footer{
height: 15vh;
}