-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
112 lines (98 loc) · 1.85 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
104
105
106
107
108
109
110
111
112
$/* Reset estilos por defecto */
*,
*::before,
*::after {
box-sizing: border-box;
}
body, html {
font-family: 'Source Sans Pro', sans-serif;
margin: 0;
padding: 0;
line-height: 1.2;
}
h1, h2, h3, p {
margin: 0;
font-weight: 400;
}
a {
text-decoration: none;
color: white;
}
.coverPage {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
background-image: url(img/background.jpg);
background-repeat: no-repeat;
background-size: cover;
}
.coverPage::before {
content: '';
display: block;
position: absolute;
background: black;
opacity: .8;
width: 100vw;
height: 100vh;
top: 0;
}
.__coverPage-content {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
color: white;
height: 50%;
width: 50%;
z-index: 1000;
text-align: center;
opacity: .9;
padding: 1em;
}
.__coverPage-content h1 {
font-size: 4em;
color: #F9A825;
opacity: .8;
}
.__coverPage-content h2 {
font-size: 2.2em;
margin-bottom: 1.5em;
}
.__coverPage-content h3 {
font-size: 1.6em;
margin-bottom: .8em;
text-transform: uppercase;
opacity: .7;
}
.__coverPage-content p {
font-size: .95em;
margin-bottom: 1.5em;
line-height: 1.5;
opacity: .7;
}
.socialIcon {
margin-right: 10px;
opacity: .7;
}
.socialIcon i {
display: inline-flex;
justify-content: center;
align-items: center;
font-size: 20px;
border: 2px solid white;
border-radius: 50%;
padding: 15px;
height: 25px;
width: 25px;
transition: all .3s
}
.socialIcon i:hover {
color: #F9A825;
border-color: #F9A825;
}
@media screen and (min-width: 321px) and (max-width: 1023px) {
.__coverPage-content {
width: 100%;
}
}