blob: 989865bfad9f30d7f5601fa0521b9b3d34809e04 [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;
9 filter: var(--card-overlay-filter);
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;
16 position: relative;
17 overflow: hidden;
18 margin: 100px;
19 filter: var(--card-overlay-filter);
20}
21
22
23.panel {
24 position: absolute;
25 overflow: hidden;
26 width: 88%;
27 height: 76%;
28 top: 12%;
29 left: 6%;
30 border-radius: 17px;
31 background-color: var(--card-background-color);
32 backdrop-filter: blur(7px);
33 filter: var(--card-filter);
34}
35
36.titleContainer {
Samuel Shuert016ea022021-09-01 16:17:24 -050037 display: flex;
38 flex-direction: row;
39 justify-content: center;
40 align-items: center;
pineafana5ce9102021-09-02 17:21:31 +010041 width: 100%;
42 height: 32px;
43 margin-top: 20px;
Samuel Shuert016ea022021-09-01 16:17:24 -050044}
45
46.title {
pineafana5ce9102021-09-02 17:21:31 +010047 font-weight: 100;
48 font-size: 30px;
49 margin-left: 1vw;
Samuel Shuert016ea022021-09-01 16:17:24 -050050 line-height: 24px;
pineafana5ce9102021-09-02 17:21:31 +010051 color: var(--card-text-color);
Samuel Shuert016ea022021-09-01 16:17:24 -050052}
53
pineafana5ce9102021-09-02 17:21:31 +010054.image {
55 height: 50px;
56 width: 50px;
57}
58
59.subtext {
60 width: 100%;
61 text-align: center;
62 color: var(--card-text-color);
63}
64
65
Samuel Shuert016ea022021-09-01 16:17:24 -050066.buttonLayout {
67 display: flex;
68 flex-direction: row;
69 justify-content: flex-end;
70 align-items: center;
71 padding: 0px;
pineafana5ce9102021-09-02 17:21:31 +010072 position: absolute;
73 bottom: 5px;
74 right: 5px;
Samuel Shuert016ea022021-09-01 16:17:24 -050075}
76
77.button {
78 display: flex;
79 flex-direction: row;
80 align-items: flex-start;
pineafana5ce9102021-09-02 17:21:31 +010081 justify-content: right;
82 position: static;
Samuel Shuert016ea022021-09-01 16:17:24 -050083 flex: none;
84 order: 1;
85 flex-grow: 0;
Samuel Shuert016ea022021-09-01 16:17:24 -050086
pineafana5ce9102021-09-02 17:21:31 +010087 margin: 5px;
88 padding: 5px 10px;
89 border-radius: 8px;
Samuel Shuert016ea022021-09-01 16:17:24 -050090}