-
Notifications
You must be signed in to change notification settings - Fork 0
/
elements.css
90 lines (75 loc) · 1.15 KB
/
elements.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
* {
margin: 0;
padding: 0;
box-sizing: border-box; /*nao passar a borda*/
}
html {
font-size: 62.5%;
scroll-behavior: smooth; /*rolamento suave entre paginas*/
}
body {
font-family: "Open Sans", sans-serif;
font-size: 2rem;
color: var(--primary-color);
line-height: 1.5;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Montserrat", sans-serif;
}
h1 {
font-size: 6rem;
text-transform: uppercase; /*letra maiuscula*/
}
h2 {
font-size: 6rem;
margin-bottom: 5rem;
text-transform: uppercase;
line-height: 1.2;
}
h3 {
font-size: 5rem;
}
h4 {
font-size: 4.5rem;
}
h5 {
font-size: 4rem;
}
h6 {
font-size: 3.5rem;
}
p {
margin-bottom: 3rem;
}
.responsive-table {
overflow-x: hidden;
overflow-x: auto;
}
table {
min-width: 3.6rem;
width: 100%;
border-collapse: collapse; /*colar as bordas*/
padding: 1rem;
}
table caption {
font-style: italic;
font-size: 1.6rem;
text-align: left;
margin-bottom: 1rem;
}
table td,
table th {
white-space: nowrap; /*nao quebrar o texto*/
padding: 1rem;
text-align: left;
border: 0.1rem solid var(--light-gray-color);
}
tfoot td,
table th {
background: var(--light-gray-color);
}