-
Notifications
You must be signed in to change notification settings - Fork 0
/
globals.css
75 lines (65 loc) · 1.5 KB
/
globals.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');
/* Change the values in here to match your branding */
:root {
/* Background color of the page */
--background-color: #3cc3e0;
/* Color of the text/words */
--text-color: #000;
/* Main color of your brand */
--color-primary: #3cc3e0;
/* Secondary color of your brand */
--color-secondary: #3cc3e0;
/* Which font you want to use */
--font: 'VT323', monospace;
/* Color of the border around items */
}
/* --- Don't need to modify below here --- */
/* Default design values of the entire document */
body,
html {
background: var(--background-color);
font-family: var(--font) !important;
color: var(--text-color);
display: flex;
margin: 0;
text-align: center;
}
p {
font-family: var(--font) !important;
color: var(--text-color);
}
nav {
box-shadow: none !important;
}
.nextui-navbar-container {
box-shadow: none !important;
background: var(--background-color) !important;
font-family: var(--font) !important;
color: var(--text-color);
display: flex;
margin: 0;
text-align: center;
}
/* Box sizing rules */
*,
*::before,
*::after {
box-sizing: border-box;
}
.display {
display: flex;
justify-content: left;
align-items: center;
margin-bottom: 3rem;
}
.button {
width: 25% !important;
}
.connect-wallet-desktop {
height: inherit !important;
min-width: inherit !important;
width: 75% !important;
}
ul.nextui-c-jklhtj.nextui-c-ewlcFW.nextui-navbar-collapse-wrapper {
background: var(--background-color) !important;
}