-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathestilo.css
More file actions
196 lines (166 loc) · 3.33 KB
/
Copy pathestilo.css
File metadata and controls
196 lines (166 loc) · 3.33 KB
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
/*
* @author Stheffane Nunes
* @version 0.1
*/
/* __________________________________ layout ___________________________________ */
html, body, .capa {
height: 100%;
overflow: auto;
}
body {
background: url('imagens/capa.png'),
url('imagens/ruido.png'),
linear-gradient(50deg,#ff4169,#7c26f8);
background-attachment: fixed;
font-family: Helvetica, Arial, sans-serif;
overflow-x: hidden; /* esconde a barra de rolação inferior*/
}
/* -- Barra de Navegação -- */
.img-logo {
height: 40px;
width: 132px;
display: block;
background: url('imagens/spotify.svg') no-repeat;
background-size: contain; /* define que o tam da img de fundo tenha o mesmo tam defino na classe*/
color: transparent;
}
nav.navbar-transparente {
padding: 15px 0px;
background: rgba(0, 0, 0, 0.6);
border: none;
}
.navbar-brand {
padding: 5px 15px;
}
.divisor {
width: 1px;
height: 16px;
background: white;
margin: 16px 10px;
}
.navbar-inverse .navbar-nav>li>a, #rodape .nav a {
color: white;
}
.navbar-inverse .navbar-nav>li>a:hover, #rodape .nav a:hover {
color: #9bf0e1;
background: none; /* retira o background */
}
/* -- Imagem de Capa -- */
.capa {
display: table;
width: 100%;
}
.texto-capa {
text-align: center;
color: white;
display: table-cell;
vertical-align: middle;
}
/* -- Botões -- */
.btn-custom {
color: white;
border-radius: 500px;
-webkit-border-radius: 500px;
-moz-border-radius: 500px;
padding: 10px 35px;
text-transform: uppercase;
transition: background 0.4s, color 0.4s;
}
.btn-roxo {
background: #7c26f8;
}
.btn-roxo:hover {
background-color: #6207e3;
color: white;
}
.btn-branco {
border: 2px solid white;
}
.btn-branco:hover {
background-color: white;
color: black;
}
/* -- Seção Serviços -- */
#servicos {
background: white;
padding: 20px 0px;
}
.albuns {
padding: 10px 0px;
}
/* -- Seção Recursos -- */
#recursos {
padding: 20px 0px;
color: white;
}
.rotacionar {
transform: rotate(30deg);
-ms-transform: rotate(30deg); /*IE 9 */
-webkit-transform: rotate(30deg); /*chrome, Safari, Opera */
padding-left: 80px;
}
/* -- Rodapé -- */
footer {
background: #000;
padding: 50px 0px 20px 0px;
position: relative;
}
.item-rede-social {
float: right;
}
/* ________________________________ Tipografia _________________________________ */
h1 {
font-weight: 900px;
letter-spacing: -0.05em;
margin-bottom: 50px;
}
h2 {
font-size: 50px;
font-weight: 700;
letter-spacing: -0.04em;
}
h3 {
font-size: 35px;
font-weight: 700;
letter-spacing: -0.04em;
}
#rodape h4 {
color: #919496;
font-size: 12px;
text-transform: uppercase;
}
#servicos h2, #servicos h3 {
color: #7c25f8;
}
#recursos h3 {
color: #9bf0e1;
}
/* _ Media queries _ */
/* xs < 768 */
@media screen and (max-width: 767px) {
h1 {
font-size: 50px;
}
.btn-custom {
margin: 10px 15px;
}
}
/* sm */
@media screen and (min-width: 768px) {
h1 {
font-size: 70px;
}
}
/* md */
@media screen and (min-width: 992px) {
h1 {
font-size: 80px;
}
}
/* lg */
@media screen and (min-width: 1200px) {
h1 {
font-size: 100px;
}
}
/* _ Fim Media queries _ */