blob: e4b74bf9f16293931c7377c895734064eacbfe58 (
plain)
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
|
body {
color: white;
background-color: black;
width: 80%;
max-width: 1000px;
margin: 20px auto;
font-size: 16px;
}
.bottom-align {
display: flex;
flex-direction: column;
justify-content: flex-end;
}
.title {
display: flex;
flex-direction: column;
}
.title h1 {
display: inline;
margin: 1px;
}
.title h2 {
margin: 1px;
}
.esquizo {
width: 100px;
display: inline;
}
@media (min-width: 768px) {
.title {
flex-direction: row; /* Volta a ficar lado a lado */
}
}
|