-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
115 lines (99 loc) · 2.03 KB
/
style.css
File metadata and controls
115 lines (99 loc) · 2.03 KB
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
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin-left: 0;
padding: 20px 40px;
background-color: #f5f7fa;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.table {
width: 100%;
border-collapse: separate;
border-spacing: 0;
background-color: #ffffff;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
th, td {
border: 1px solid #e3e8ee;
padding: 12px;
text-align: left;
}
th {
background-color: #e3e8ee;
color: #3c4b64;
}
tr:nth-child(even) {
background-color: #f5f7fa;
}
h1 {
font-size: 28px;
color: #3c4b64;
margin-bottom: 20px;
}
.delete-button {
background-color: #f06c61;
color: #ffffff;
border: none;
border-radius: 5px;
padding: 8px 12px;
cursor: pointer;
font-size: 14px;
text-decoration: none;
}
.edit-button {
background-color: #3c4b64;
color: #ffffff;
border: none;
border-radius: 5px;
padding: 8px 12px;
cursor: pointer;
font-size: 14px;
text-decoration: none;
}
.navbar {
background-color: #3c4b64;
overflow: auto;
margin-bottom: 20px;
border-radius: 10px;
position: relative;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
padding: 0.5rem 0;
font-size: 1.1rem;
transition: all 0.3s;
}
.navbar:hover {
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
padding: 16px 20px;
border-radius: 10px;
}
.navbar-list-left, .navbar-list-right {
list-style-type: none;
margin: 0;
padding: 0;
}
.navbar-list-left li, .navbar-list-right li {
float: left;
}
.navbar-list-left li a, .navbar-list-right li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
transition: all 0.3s;
}
.navbar-list-left li a:hover, .navbar-list-right li a:hover {
background-color: #e3e8ee;
color: #3c4b64;
padding: 16px 20px;
border-radius: 10px;
}
.navbar-list-right {
position: absolute;
right: 1rem;
}