Rooni commited on
Commit
82d6d45
·
verified ·
1 Parent(s): 68e7d5d

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +71 -0
style.css CHANGED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* !important */
2
+
3
+ @import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&display=swap');
4
+
5
+ * {
6
+ /* font-family: 'Comfortaa', cursive, sans-serif !important; */
7
+ font-family: "M PLUS Rounded 1c", sans-serif !important;
8
+ box-sizing: border-box !important;
9
+ font-weight: 200 !important;
10
+ }
11
+
12
+ :root {
13
+ --primary-color: #d67ae0;
14
+ --primary-color-rgb: 214, 122, 224;
15
+ --text-on-primary: #000000;
16
+ --bg-color: #f7f8fc;
17
+ --surface-color: #ffffff;
18
+ --text-color: #1c1c1f;
19
+ --subtext-color: #65676b;
20
+ --gradient-1: #fdfbff;
21
+ --gradient-2: #f4f6f9;
22
+ --icon-filter: invert(80%);
23
+ --icon-filter-hover: invert(0%);
24
+ --header-bg: rgba(247, 248, 252, 0.7);
25
+ --footer-bg: #eff1f5;
26
+ --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
27
+ --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
28
+ --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.07), 0 4px 6px -4px rgb(0 0 0 / 0.07);
29
+
30
+ --radius-sm: 20px !important;
31
+ --radius-md: 10px !important;
32
+ --background-fill-primary: #f7f8fc !important;
33
+ --background-fill-secondary: #ffffff !important;
34
+ --block-background-fill: var(--bg-color) !important;
35
+ }
36
+
37
+ :root .dark {
38
+ --primary-color: #eab5ee;
39
+ --primary-color-rgb: 234, 181, 238;
40
+ --text-on-primary: #000;
41
+ --bg-color: #0d1117;
42
+ --surface-color: #161b22;
43
+ --text-color: #e6edf3;
44
+ --subtext-color: #848d97;
45
+ --gradient-1: #1a121c;
46
+ --gradient-2: #0d1117;
47
+ --icon-filter: invert(10%) sepia(8%) saturate(93%) hue-rotate(170deg) brightness(95%) contrast(84%);
48
+ --icon-filter-hover: invert(90%);
49
+ --header-bg: rgba(13, 17, 23, 0.7);
50
+ --footer-bg: #161b22;
51
+
52
+ --background-fill-primary: #0d1117 !important;
53
+ --background-fill-secondary: #161b22 !important;
54
+ }
55
+
56
+ lg, primary {
57
+ color: var(--primary-color) !important;
58
+ font-size: 14px !important;
59
+ padding: 8px 18px !important;
60
+ border: 2px solid var(--primary-color) !important;
61
+ transition: all 0.3s ease-in-out !important;
62
+ font-weight: bold !important;
63
+ background-color: transparent !important;
64
+ white-space: nowrap !important;
65
+ }
66
+
67
+ lg:hover, primary:hover {
68
+ background-color: var(--primary-color) !important;
69
+ color: var(--text-on-primary) !important;
70
+ transform: scale(1.05) !important;
71
+ }