-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.css
101 lines (86 loc) · 1.42 KB
/
common.css
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
.shadow {
border: 1px solid var(--borderColor);
box-shadow: 1px 0 12px var(--shadowgrey);
}
.row-items {
display: flex;
flex-wrap: wrap;
gap: 15px;
}
.center {
width: 100%;
height: 90%;
display: grid;
place-items: center;
}
.form {
display: flex;
flex-direction: column;
gap: 10px;
}
.form h2 {
text-indent: 20px;
}
.form__container {
padding: 30px;
border-radius: 15px;
width: min(440px, 40vw);
min-height: 200px;
display: flex;
flex-direction: column;
gap: 10px;
background-color: white;
}
.form__end {
padding: 10px;
display: flex;
justify-content: center;
}
.background-pattern {
position: absolute;
top: 0;
right: 0;
height: 100%;
z-index: -1;
}
.background-pattern img {
height: 100%;
}
.grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
place-items: center;
}
.header {
display: flex;
justify-content: space-between;
align-items: baseline;
border-bottom: 2px solid var(--textPrimary);
}
.action-bar {
display: flex;
justify-content: flex-end;
gap: 10px;
}
.green {
background-color: var(--green);
color: white;
}
.green svg {
fill: white;
}
.purple {
background-color: var(--purple);
color: white;
}
.purple svg {
fill: white;
}
.yellow {
background-color: var(--yellow);
color: white;
}
.yellow svg {
fill: white;
}