-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
50 lines (43 loc) · 885 Bytes
/
style.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
/* Global Styles */
body {
font-family: 'Roboto', sans-serif;
background-color: #f0f2f5;
color: #333;
}
/* Sidebar Styles */
.css-1aumxhk {
background-color: #fff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
padding: 20px;
}
.css-1aumxhk label {
font-weight: bold;
margin-bottom: 10px;
}
/* Main Content Styles */
.main .block-container {
background-color: #fff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
padding: 20px;
margin-bottom: 20px;
}
.main h1, .main h2 {
color: #1a73e8;
}
.main th, .main td {
padding: 10px;
border-bottom: 1px solid #ddd;
}
/* Button Styles */
.css-16tn5zk {
background-color: #1a73e8;
color: #fff;
border: none;
padding: 10px 20px;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.css-16tn5zk:hover {
background-color: #1a6dd8;
}