-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
70 lines (66 loc) · 1.22 KB
/
styles.css
File metadata and controls
70 lines (66 loc) · 1.22 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
/*
Rymentz
MIT License
*/
body {
background-color: #f8f9fa;
}
.canvas-container {
box-shadow: 0 0 15px rgba(0,0,0,0.1);
border-radius: 8px;
overflow: hidden;
}
#kaspaCanvas {
display: block;
max-width: 100%;
height: auto;
}
.donation-code {
word-break: break-all;
}
#bpsValue {
font-size: 1rem;
padding: 0.5rem 0.75rem;
margin-left: 10px;
}
.card {
transition: box-shadow 0.3s ease-in-out;
}
.card:hover {
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.form-range::-webkit-slider-thumb {
background: #006195;
}
.form-range::-moz-range-thumb {
background: #006195;
}
.form-range::-ms-thumb {
background: #006195;
}
.form-range::-webkit-slider-runnable-track {
background: #0080c5;
}
.form-range::-moz-range-track {
background: #0080c5;
}
.form-range::-ms-track {
background: #0080c5;
}
.bps-preset {
padding: 0.25rem 0.5rem;
font-size: 0.875rem;
min-width: 45px;
}
.bps-preset:hover {
background-color: #006195;
color: white;
}
.btn-outline-primary {
border-color: #006195;
color: #006195;
}
.btn-outline-primary:hover {
background-color: #006195;
border-color: #006195;
}