Spaces:
Running
Running
Update styles.css
Browse files- styles.css +43 -1
styles.css
CHANGED
|
@@ -9,6 +9,11 @@
|
|
| 9 |
font-weight: 200 !important;
|
| 10 |
}
|
| 11 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
:root {
|
| 13 |
--primary-color: #d67ae0;
|
| 14 |
--primary-color-rgb: 214, 122, 224;
|
|
@@ -53,6 +58,10 @@
|
|
| 53 |
--background-fill-secondary: #161b22 !important;
|
| 54 |
}
|
| 55 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 56 |
primary {
|
| 57 |
color: var(--primary-color) !important;
|
| 58 |
font-size: 14px !important;
|
|
@@ -68,4 +77,37 @@ primary:hover {
|
|
| 68 |
background-color: var(--primary-color) !important;
|
| 69 |
color: var(--text-on-primary) !important;
|
| 70 |
transform: scale(1.05) !important;
|
| 71 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
font-weight: 200 !important;
|
| 10 |
}
|
| 11 |
|
| 12 |
+
footer {
|
| 13 |
+
visibility: hidden !important;
|
| 14 |
+
height: 0 !important;
|
| 15 |
+
}
|
| 16 |
+
|
| 17 |
:root {
|
| 18 |
--primary-color: #d67ae0;
|
| 19 |
--primary-color-rgb: 214, 122, 224;
|
|
|
|
| 58 |
--background-fill-secondary: #161b22 !important;
|
| 59 |
}
|
| 60 |
|
| 61 |
+
body, html {
|
| 62 |
+
background: var(--body-background-fill);
|
| 63 |
+
}
|
| 64 |
+
|
| 65 |
primary {
|
| 66 |
color: var(--primary-color) !important;
|
| 67 |
font-size: 14px !important;
|
|
|
|
| 77 |
background-color: var(--primary-color) !important;
|
| 78 |
color: var(--text-on-primary) !important;
|
| 79 |
transform: scale(1.05) !important;
|
| 80 |
+
}
|
| 81 |
+
|
| 82 |
+
|
| 83 |
+
.secondary {
|
| 84 |
+
color: var(--primary-color) !important;
|
| 85 |
+
font-size: 14px !important;
|
| 86 |
+
padding: 8px 18px !important;
|
| 87 |
+
border: 2px solid rgb(96 55 103) !important;
|
| 88 |
+
transition: all 0.3s ease-in-out !important;
|
| 89 |
+
font-weight: bold !important;
|
| 90 |
+
background-color: transparent !important;
|
| 91 |
+
white-space: nowrap !important;
|
| 92 |
+
}
|
| 93 |
+
.secondary:hover {
|
| 94 |
+
background-color: rgb(96 55 103) !important;
|
| 95 |
+
color: #fff !important;
|
| 96 |
+
transform: scale(1.05) !important;
|
| 97 |
+
}
|
| 98 |
+
|
| 99 |
+
::-webkit-scrollbar {
|
| 100 |
+
width: 0.5em !important;
|
| 101 |
+
/* Ширина полосы прокрутки */
|
| 102 |
+
}
|
| 103 |
+
|
| 104 |
+
::-webkit-scrollbar-thumb {
|
| 105 |
+
background-color: #3a3a3ab3 !important;
|
| 106 |
+
border-radius: 50px !important;
|
| 107 |
+
/* Цвет фона ползунка */
|
| 108 |
+
}
|
| 109 |
+
|
| 110 |
+
::-webkit-scrollbar-track {
|
| 111 |
+
background-color: transparent !important;
|
| 112 |
+
/* Цвет фона дорожки */
|
| 113 |
+
}
|