blob: c06a5a640675c1fd349b3fa59619d8171f8fd2c8 [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;
pineafan69f4c672022-10-23 08:50:36 +010046 padding-block: 20px;
pineafan15b813d2022-02-13 10:06:09 +000047 padding-inline: 20px;
pineafan69f4c672022-10-23 08:50:36 +010048 background-color: var(--theme-ui-colors-background);
pineafan15b813d2022-02-13 10:06:09 +000049}
50
51.title {
52 width: 100%;
pineafanff3d4522022-05-06 19:51:02 +010053 font-size: min(max(2em, 3.25vw), 4em);
pineafan15b813d2022-02-13 10:06:09 +000054 margin: 0;
55 color: var(--theme-ui-colors-text);
56 transition: color 0.3s ease-in-out;
57 font-weight: lighter;
58 text-align: center;
pineafan46270162022-02-13 12:06:17 +000059 word-break: break-word;
pineafan15b813d2022-02-13 10:06:09 +000060}
61
62.subtitle {
63 width: 100%;
64 font-size: max(2em, 2vw);
65 color: var(--theme-ui-colors-text);
66 transition: color 0.3s ease-in-out;
67 font-weight: lighter;
68 text-align: center;
69 word-break: break-word;
70 margin-block: 0;
71}
72
73.text {
74 width: 100%;
75 text-align: center;
76 padding-inline: "15%";
77 font-size: 120%;
78 color: var(--card-text-color);
79 transition: color 0.3s ease-in-out;
80 margin-top: 0;
81 margin: 10px
82}
83
84.divider {
85 width: 75%;
86 height: 4px;
87 border-radius: 100vw;
88 margin-block: 10px;
pineafan15b813d2022-02-13 10:06:09 +000089 transition: background-color 0.3s ease-in-out;
90}