forked from huogerac/css-box-model-explicado
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
69 lines (59 loc) · 973 Bytes
/
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
body {
overflow: hidden; /* Hide scrollbars */
}
.rodape {
position: fixed;
bottom: 10px;
padding: 0 20px;
}
.center {
text-align: center;
font-size: 26px;
line-height: 100vh;
}
.full-screen {
line-height: 100vh;
font-size: 26px;
}
.sticker {
background-color: #222222;
line-height: 30px;
transform: rotate(45deg);
position: absolute;
top: 19px;
right: -30px;
width: 130px;
text-align: center;
}
.sticker a {
color: #fff;
font-size: 18px;
text-decoration: none;
}
.conteudo {
height: 60px;
background: orange;
line-height: 60px;
text-align: center;
color: #fff;
font-size: 30px;
}
.preenchimento {
background-color: #6495ed;
padding: 0 26px 26px 26px;
}
.borda {
border: 26px solid #3f51b5;
border-top-width: 0;
background-color: #3f51b5;
}
.caixa {
background-color: #4682b4;
padding: 0 26px 26px 26px;
}
.descricao {
line-height: 28px;
font-size: 20px;
color: #fff;
font-weight: bold;
}