Skip to content

Commit 2b32cfc

Browse files
xd
1 parent 4bc4173 commit 2b32cfc

File tree

1 file changed

+170
-0
lines changed

1 file changed

+170
-0
lines changed

dashboard/assets/css/dashboard.css

Lines changed: 170 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,170 @@
1+
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');
2+
3+
* {
4+
margin: 0;
5+
padding: 0;
6+
box-sizing: border-box;
7+
text-decoration: none;
8+
font-family: 'Poppins', sans-serif;
9+
}
10+
11+
html {
12+
scroll-behavior: smooth;
13+
}
14+
15+
body {
16+
background-color: #222222;
17+
}
18+
19+
.navbar{
20+
position: fixed;
21+
width: 100%;
22+
z-index: 2;
23+
padding: 25px 0;
24+
transition: all 0.3s ease;
25+
}
26+
.navbar.sticky{
27+
background: #1b1b1b;
28+
padding: 10px 0;
29+
box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.1);
30+
}
31+
.navbar .content{
32+
display: flex;
33+
align-items: center;
34+
justify-content: space-between;
35+
}
36+
.navbar .logo a{
37+
color: #fff;
38+
font-size: 30px;
39+
font-weight: 600;
40+
text-decoration: none;
41+
}
42+
.navbar .menu-list{
43+
display: inline-flex;
44+
}
45+
.menu-list li{
46+
list-style: none;
47+
}
48+
.menu-list li a{
49+
color: #fff;
50+
font-size: 18px;
51+
font-weight: 500;
52+
margin-left: 25px;
53+
text-decoration: none;
54+
transition: all 0.3s ease;
55+
}
56+
.menu-list li a:hover{
57+
color: #007bff;
58+
}
59+
.icon{
60+
color: #fff;
61+
font-size: 20px;
62+
cursor: pointer;
63+
display: none;
64+
}
65+
.menu-list .cancel-btn{
66+
position: absolute;
67+
right: 30px;
68+
top: 20px;
69+
}
70+
@media (max-width: 1230px) {
71+
.content{
72+
padding: 0 60px;
73+
}
74+
}
75+
@media (max-width: 1100px) {
76+
.content{
77+
padding: 0 40px;
78+
}
79+
}
80+
@media (max-width: 900px) {
81+
.content{
82+
padding: 0 30px;
83+
}
84+
}
85+
@media (max-width: 868px) {
86+
body.disabled{
87+
overflow: hidden;
88+
}
89+
.icon{
90+
display: block;
91+
}
92+
.icon.hide{
93+
display: none;
94+
}
95+
.navbar .menu-list{
96+
position: fixed;
97+
height: 100vh;
98+
width: 100%;
99+
max-width: 400px;
100+
left: -100%;
101+
top: 0px;
102+
display: block;
103+
padding: 40px 0;
104+
text-align: center;
105+
background: #222;
106+
transition: all 0.3s ease;
107+
}
108+
.navbar.show .menu-list{
109+
left: 0%;
110+
}
111+
.navbar .menu-list li{
112+
margin-top: 45px;
113+
}
114+
.navbar .menu-list li a{
115+
font-size: 23px;
116+
margin-left: -100%;
117+
transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
118+
}
119+
.navbar.show .menu-list li a{
120+
margin-left: 0px;
121+
}
122+
}
123+
@media (max-width: 380px) {
124+
.navbar .logo a{
125+
font-size: 27px;
126+
}
127+
}
128+
129+
.container {
130+
padding-top: 20px;
131+
display: flex;
132+
flex-direction: row;
133+
flex-wrap: wrap;
134+
justify-content: center;
135+
align-items: center;
136+
margin-bottom: 15px;
137+
}
138+
139+
.stxt {
140+
padding-top: 100px;
141+
text-align: center;
142+
color: #fff;
143+
}
144+
145+
.box {
146+
background-color: #333333;
147+
padding: 15px;
148+
border-radius: 12px;
149+
margin: 10px;
150+
}
151+
152+
.box:hover {
153+
background-color: #444444;
154+
padding: 17px;
155+
}
156+
157+
.box img {
158+
display: block;
159+
margin-left: auto;
160+
margin-right: auto;
161+
border-radius: 12px;
162+
width: 120px;
163+
height: 120px;
164+
}
165+
166+
.box .guild-name {
167+
padding-top: 10px;
168+
text-align: center;
169+
color: #fff;
170+
}

0 commit comments

Comments
 (0)