blob: d2bd0a3ed257d955e4a51511769fca9a4bd35a6c [file] [log] [blame]
pineafana5ce9102021-09-02 17:21:31 +01001.backgroundImage {
2 position: absolute;
3 bottom: -1px;
4 left: -1px;
5 width: calc(100% + 5px);
6 height: auto;
7 scale: stretch;
8 border-radius: 0;
pineafan69adcb82021-11-03 21:29:03 +00009 filter: var(--theme-ui-colors-cardFilter);
Samuel Shuert016ea022021-09-01 16:17:24 -050010}
pineafana5ce9102021-09-02 17:21:31 +010011
12.card {
13 border-radius: 17px;
14 width: 100%;
15 height: 204px;
pineafan17f69012021-10-25 20:57:44 +010016 padding-inline: 5px;
17 padding-bottom: 5px;
pineafana5ce9102021-09-02 17:21:31 +010018 position: relative;
19 overflow: hidden;
20 margin: 100px;
pineafan69adcb82021-11-03 21:29:03 +000021 filter: var(--theme-ui-colors-cardFilter);
pineafana5ce9102021-09-02 17:21:31 +010022}
23
24
25.panel {
26 position: absolute;
pineafan17f69012021-10-25 20:57:44 +010027 overflow-x: hidden;
Samuel Shuert40af7442021-10-25 16:00:18 -050028 overflow-y: hidden;
pineafana5ce9102021-09-02 17:21:31 +010029 width: 88%;
30 height: 76%;
31 top: 12%;
32 left: 6%;
pineafan17f69012021-10-25 20:57:44 +010033 padding-top: 10px;
34 padding-bottom: 10px;
pineafana5ce9102021-09-02 17:21:31 +010035 border-radius: 17px;
pineafan69adcb82021-11-03 21:29:03 +000036 background-color: var(--theme-ui-colors-cardBackground);
pineafana5ce9102021-09-02 17:21:31 +010037 backdrop-filter: blur(7px);
pineafana5ce9102021-09-02 17:21:31 +010038}
39
40.titleContainer {
Samuel Shuert016ea022021-09-01 16:17:24 -050041 display: flex;
42 flex-direction: row;
43 justify-content: center;
44 align-items: center;
pineafana5ce9102021-09-02 17:21:31 +010045 width: 100%;
46 height: 32px;
pineafan17f69012021-10-25 20:57:44 +010047 padding-inline: 10px;
48 margin-top: 10px;
Samuel Shuert016ea022021-09-01 16:17:24 -050049}
50
51.title {
pineafana5ce9102021-09-02 17:21:31 +010052 font-weight: 100;
53 font-size: 30px;
54 margin-left: 1vw;
Samuel Shuert016ea022021-09-01 16:17:24 -050055 line-height: 24px;
pineafan939ee982021-10-25 12:44:40 +010056 max-lines: 2;
pineafan69adcb82021-11-03 21:29:03 +000057 color: var(--theme-ui-colors-text);
Samuel Shuert016ea022021-09-01 16:17:24 -050058}
59
pineafana5ce9102021-09-02 17:21:31 +010060.image {
61 height: 50px;
62 width: 50px;
63}
64
65.subtext {
66 width: 100%;
pineafan939ee982021-10-25 12:44:40 +010067 padding-inline: 10px;
pineafana5ce9102021-09-02 17:21:31 +010068 text-align: center;
pineafan69adcb82021-11-03 21:29:03 +000069 color: var(--theme-ui-colors-text);
pineafana5ce9102021-09-02 17:21:31 +010070}
71
72
Samuel Shuert016ea022021-09-01 16:17:24 -050073.buttonLayout {
74 display: flex;
75 flex-direction: row;
76 justify-content: flex-end;
77 align-items: center;
Samuel Shuert604e31d2021-09-02 16:06:20 -050078 flex-wrap: wrap;
Samuel Shuert016ea022021-09-01 16:17:24 -050079 padding: 0px;
pineafana5ce9102021-09-02 17:21:31 +010080 position: absolute;
81 bottom: 5px;
82 right: 5px;
Samuel Shuert016ea022021-09-01 16:17:24 -050083}
84
85.button {
86 display: flex;
87 flex-direction: row;
88 align-items: flex-start;
pineafana5ce9102021-09-02 17:21:31 +010089 justify-content: right;
90 position: static;
Samuel Shuert016ea022021-09-01 16:17:24 -050091 flex: none;
92 order: 1;
93 flex-grow: 0;
Samuel Shuert016ea022021-09-01 16:17:24 -050094
pineafana5ce9102021-09-02 17:21:31 +010095 margin: 5px;
96 padding: 5px 10px;
97 border-radius: 8px;
Samuel Shuert40af7442021-10-25 16:00:18 -050098}