-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
54 lines (49 loc) · 948 Bytes
/
style.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
:root {
--bg-color: #22222218;
--text-color: rgb(45, 49, 45);
}
body {
color: var(--text-color);
background-color: var(--bg-color);
}
.stButton > button {
width: 100%;
display: inline-flex;
align-items: center;
justify-content: center;
background-color: rgb(255, 255, 255);
color: rgb(38, 39, 48);
padding: 0.25rem 0.75rem;
position: relative;
text-decoration: none;
border-radius: 4px;
border-width: 1px;
border-style: solid;
border-color: aquamarine;
border-image: initial;
}
.stButton > button:hover {
border-color: rgb(246, 51, 102);
color: rgb(246, 51, 102);
}
.stButton > button:active {
box-shadow: none;
background-color: rgb(246, 51, 102);
color: white;
}
.highlight {
border-radius: 0.4rem;
color: white;
padding: 0.5rem;
margin-bottom: 1rem;
}
.bold {
padding-left: 1rem;
font-weight: 700;
}
.blue {
background-color: lightcoral;
}
.red {
background-color: lightblue;
}