-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboard-page.css
168 lines (148 loc) · 3.5 KB
/
dashboard-page.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
/* Importing Fonts */
@import url('https://fonts.googleapis.com/css2?family=Sour+Gummy:wght@400;700&display=swap');
/* Font Face */
@font-face {
font-family: roboto-regular;
src: url('../font/Roboto-Regular.ttf');
}
/* Basic Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Navbar Styling */
.navbar {
background: linear-gradient(45deg, #56CCF2, #2F80ED);
padding: 10px 0;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
display: flex;
align-items: center;
justify-content: space-between;
}
/* Logo */
.logo {
width: 60px;
height: 60px;
margin-left: 15px;
border-radius: 50%;
}
/* Navigation Items */
#navItem1, #navItem2, #navItem3, #navItem4 {
color: #323f4b;
font-size: 20px;
font-family: 'Roboto', sans-serif;
padding: 10px;
margin-right: 15px;
}
/* Dashboard Header */
.dashboard-style {
font-size: 30px;
font-weight: bold;
font-family: 'Sour Gummy', sans-serif;
color: #FFD700;
text-shadow: 0px 0px 5px #00E5FF;
margin-bottom: 15px;
text-align: center;
}
/* Subheading */
.dashboard-style2 {
font-size: 22px;
color: #00E5FF;
font-family: 'Roboto', sans-serif;
text-align: center;
margin-bottom: 20px;
}
/* Button Styling */
.lock-btn, .update-btn {
background-color: #333;
color: white;
border: none;
padding: 12px 24px;
border-radius: 8px;
cursor: pointer;
font-weight: bold;
transition: transform 0.2s, background-color 0.2s;
font-family: 'Roboto', sans-serif;
}
.lock-btn:hover, .update-btn:hover {
background-color: #4577a6;
transform: translateY(-3px);
}
/* Content Boxes */
.box, .recent-activity {
width: 45%;
background: #fff;
text-align: center;
border-radius: 12px;
padding: 20px;
margin: 15px auto;
border: 2px solid black;
box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
transition: transform 0.2s, background-color 0.2s;
font-family: 'Roboto', sans-serif;
}
/* Box Hover Effect */
.box:hover, .recent-activity:hover {
background-color: #E6F4FA;
color: rgba(0, 42, 101, 0.954);
transform: translateY(-5px);
}
/* Button Inside Content Box */
.play {
width: 100%;
padding: 15px;
border-radius: 10px;
margin-top: 130px;
background: linear-gradient(90deg, #F2994A, #F2C94C);
color: white;
font-weight: bold;
font-family: 'Roboto', sans-serif;
border: none;
transition: transform 0.2s, background-color 0.2s;
}
/* Play Button Hover */
.play:hover {
background: linear-gradient(90deg, #F2994A, #EB5757);
box-shadow: 0 0 20px rgba(255, 0, 150, 0.4), 0 0 30px rgba(255, 0, 150, 0.3);
transform: scale(1.05);
}
/* Separator Background with Animation */
.seperator {
background: linear-gradient(135deg, #56CCF2, #2F80ED);
padding: 20px;
min-height: 100vh;
animation: gradientShift 5s ease infinite;
background-size: 200% 200%;
}
/* Animated Gradient Shift */
@keyframes gradientShift {
0% { background-position: 0% 50%; }
100% { background-position: 100% 50%; }
}
/* General Text */
.access {
font-size: 32px;
margin-bottom: 10px;
color: #323f4b;
text-align: center;
font-family: 'Sour Gummy', sans-serif;
}
.description {
font-size: 16px;
color: #333;
margin-top: 10px;
font-family: 'Roboto', sans-serif;
text-align: center;
}
/* Utility for Hidden Lock State */
#unlock {
display: none;
}
#lock {
display: inline;
}
/* Back Button Hover */
.back:hover {
background-color: #4577a6;
}