#
luxiaotao1123
2021-03-04 0402b87deef3ed00d4bb83647e616d02086b9974
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
.demo-1 {
    --color-text: #fff;
    --color-bg: #000;
    --color-link: #fff;
    --color-link-hover: #ac1122;
    --color-info: #ac1122;
    --color-title: #fff;
    --color-subtitle: #d9d9d9;
    --color-subtitle-bg: #ac1122;
}
 
.content__title {
    font-family: 'Playfair Display', serif;
    font-size: 10vw;
    font-weight: normal;
    color: var(--color-title);
    text-align: center;
    margin: 0;
    pointer-events: none;
}
 
.content__subtitle {
    font-size: 1.25em;
    background: var(--color-subtitle-bg);
    color: var(--color-subtitle);
    padding: 0.45em 0.5em;
    line-height: 1;
    margin: 0;
    letter-spacing: 0.5em;
    text-indent: 0.5em;
    font-weight: bold;
    text-transform: uppercase;
}
 
@media screen and (max-width: 55em) {
    .content__title {
        font-size: 3em;
    }
    .content__subtitle {
        font-size: 0.85em;
    }
}