-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsharedStyles.css
More file actions
82 lines (76 loc) · 1.9 KB
/
sharedStyles.css
File metadata and controls
82 lines (76 loc) · 1.9 KB
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
.blueButton {
--mainBackgroundColor: rgba(30, 143, 255, 0.7);
--mainBorderColor: dodgerblue;
--activeButton: rgba(30, 143, 255, 1);
}
.redButton {
--mainBackgroundColor: rgba(255, 85, 85, 0.8);
--mainBorderColor: rgba(255, 85, 85, 0.9);
--activeButton: rgba(255, 85, 85, 1);
}
.greenButton {
--mainBackgroundColor: rgba(34, 197, 94, 0.8);
--mainBorderColor: rgba(34, 197, 94, 0.9);
--activeButton: rgba(34, 197, 94, 1);
}
.button {
background-color: var(--mainBackgroundColor);
border: 2px solid var(--mainBorderColor);
backdrop-filter: blur(5px);
border-radius: 10px;
transition: border-radius 200ms ease-in-out;
padding: 5px;
padding-left: 20px;
padding-right: 20px;
}
.button:hover {
border-radius: 5px;
}
.button:active {
background-color: var(--activeButton);
}
.text {
color: white;
font-weight: 500;
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial,
"Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.textBigger {
font-size: 1.5rem;
line-height: 2rem;
}
.textStandard {
font-size: 1.2rem;
line-height: 1.5rem;
}
.textSmall {
font-size: 1rem;
line-height: 0.8rem;
}
.smallButton {
background-color: var(--mainBackgroundColor);
border: 1px solid var(--mainBorderColor);
backdrop-filter: blur(5px);
border-radius: 7px;
transition: border-radius 200ms ease-in-out;
padding: 0.5px;
padding-left: 6px;
padding-right: 6px;
}
.smallButton:hover {
border-radius: 4px;
}
.smallButton:active {
background-color: var(--activeButton);
}
.unselectable {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
[content]::after {
content: attr(content);
}