forked from Definehack/Define24
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpopup.css
88 lines (76 loc) · 1.42 KB
/
popup.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
* {
margin: 2px;
box-sizing: border-box;
}
:root{
--secondary-color:#8989f4;
--bg-color:#FFFFFF;
--secondary-color-true: #0cffa1;
--bg-color-true: #0eb87b;
--secondary-color-false: #cc4d18;
--bg-color-false: #ff611e;
}
i{
font-size: 28px;
}
body{
font-family: "Inter", sans-serif;
font-optical-sizing: auto;
font-size: 18px;
font-weight: 400;
font-style: bold;
min-width: 400px;
max-width: 400px;
min-height: 150px;
max-height: 400px;
background-color: var(--bg-color);
}
.HeaderName{
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
background-color: var(--secondary-color);
border-radius: 6px;
margin-top: 12px;
margin-bottom: 12px;
}
.StatusBox{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 125px;
background-color: var(--secondary-color);
border-radius: 6px;
margin-bottom: 12px;
gap:0.5rem
}
.Status{
display: flex;
flex-direction: row;
}
.descriptionBox{
display: flex;
flex-direction: row;
padding: 12px;
min-height: 100px;
background-color: var(--secondary-color);
border-radius: 6px;
margin-bottom: 12px;
}
header{
font-weight: 700;
display:flex;
flex-direction: column;
}
Button{
cursor: pointer;
border: none;
border-radius: 3%;
width: 390px;
padding: 20px 8px;
font-size: 21px;
background-color: #bfbfbf;
margin-bottom: 12px;
}