-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
65 lines (56 loc) · 1.05 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
body {
margin: 0;
}
main {
display: grid;
grid-template-columns: repeat(12, 1fr);
grid-template-rows: repeat(12, 5rem);
}
.linhas {
background-image: url("linhas.svg");
background-size: 3rem;
}
.linhas:nth-of-type(1) {
grid-column: 2 / 5;
grid-row: 2 / 10;
}
.linhas:nth-of-type(2) {
grid-column: 7 / 10;
grid-row: 1 / 3;
}
.linhas:nth-of-type(3) {
grid-column: 11 / 12;
grid-row: 7 / 10;
}
h1 {
font-weight: bolder;
text-transform: uppercase;
grid-column: 3 / 6;
grid-row: 3 / 10;
font-size: 5em;
mix-blend-mode: multiply;
font-family: 'Bahnschrift';
color: white;
background-color: black;
margin: 0;
word-wrap: break-word;
}
p {
font-family: 'Bahnschrift';
text-align: justify;
margin: 0;
background-color: #fff;
color: black;
padding: 1rem;
grid-column: 8 / 10;
grid-row: 2 / 6;
mix-blend-mode: lighten;
}
p:nth-of-type(1) {
grid-column: 8 / 10;
grid-row: 2 / 6;
}
p:nth-of-type(2) {
grid-column: 7 / 12;
grid-row: 8 / 10;
}