blob: 35096b2e7660c0cda40361e0b919b17fc4f932b3 [file] [log] [blame]
pineafan15b813d2022-02-13 10:06:09 +00001.panel {
2 min-height: 50px;
3 padding: 10px;
4 padding-block: 30px;
5 width: 100%;
6 display: flex;
7 flex-direction: column;
pineafan46270162022-02-13 12:06:17 +00008 justify-content: top;
pineafan15b813d2022-02-13 10:06:09 +00009 align-items: center;
10 width: 100%;
11 gap: 10px;
12
13 background-color: var(--theme-ui-colors-panelColor);
14 border-radius: 20px;
pineafan15b813d2022-02-13 10:06:09 +000015}
16
17.doublePanel {
18 width: 100%;
19 display: grid;
20 grid-template-columns: 1fr 1fr;
21 grid-gap: 20px;
22 column-width: 100%;
23}
24
25@media (max-width: 900px) {
26 .doublePanel {
27 display: flex;
28 flex-direction: column;
29 justify-content: center;
30 align-items: center;
31 width: 100%;
32 gap: 20px;
33 }
34 .halfWidth {
35 width: 100%;
36 }
37}
38
39
40.container {
41 display: flex;
42 flex-direction: column;
43 justify-content: center;
44 align-items: center;
45 gap: 20px;
46 margin-block: 20px;
47 padding-inline: 20px;
48}
49
50.title {
51 width: 100%;
pineafanff3d4522022-05-06 19:51:02 +010052 font-size: min(max(2em, 3.25vw), 4em);
pineafan15b813d2022-02-13 10:06:09 +000053 margin: 0;
54 color: var(--theme-ui-colors-text);
55 transition: color 0.3s ease-in-out;
56 font-weight: lighter;
57 text-align: center;
pineafan46270162022-02-13 12:06:17 +000058 word-break: break-word;
pineafan15b813d2022-02-13 10:06:09 +000059}
60
61.subtitle {
62 width: 100%;
63 font-size: max(2em, 2vw);
64 color: var(--theme-ui-colors-text);
65 transition: color 0.3s ease-in-out;
66 font-weight: lighter;
67 text-align: center;
68 word-break: break-word;
69 margin-block: 0;
70}
71
72.text {
73 width: 100%;
74 text-align: center;
75 padding-inline: "15%";
76 font-size: 120%;
77 color: var(--card-text-color);
78 transition: color 0.3s ease-in-out;
79 margin-top: 0;
80 margin: 10px
81}
82
83.divider {
84 width: 75%;
85 height: 4px;
86 border-radius: 100vw;
87 margin-block: 10px;
pineafan15b813d2022-02-13 10:06:09 +000088 transition: background-color 0.3s ease-in-out;
89}