blob: 3816796d72dbc7112d4230f53b77721dd36a2202 (
plain) (
blame)
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
|
.Message {
margin-top: 24px;
font-size: 1.4em;
}
@media screen and (max-width: 600px) {
.Message {
display: none;
}
}
.Section .Title {
text-align: center;
font-size: 1.6em;
flex-basis: 100%;
margin-top: 48px;
}
@media screen and (max-width: 600px) {
.Section .Title {
margin-top: 12px;
}
}
.Cards {
display: flex;
justify-content: center;
}
.Tip {
margin-top: 2px;
}
|