-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.css
More file actions
39 lines (35 loc) · 828 Bytes
/
styles.css
File metadata and controls
39 lines (35 loc) · 828 Bytes
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
/* Light Theme Colors */
body {
background-color: #ffffff;
color: #333333;
font-family: 'Arial', sans-serif;
}
/* Modern Grid Background */
body::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px);
background-size: 20px 20px;
z-index: -1;
}
/* Loader Page Styles */
.loader-page {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #ffffff;
color: #333333;
}
.page {
background-color: #ffffff;
color: #333333;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}