-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstle1.css
More file actions
148 lines (122 loc) · 2 KB
/
stle1.css
File metadata and controls
148 lines (122 loc) · 2 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
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
.summary-grid {
display: grid;
grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
gap: 15px;
}
.summary-card {
background: linear-gradient(135deg,#4e73df,#1cc88a);
color: white;
padding: 20px;
border-radius: 15px;
text-align: center;
font-weight: bold;
}
.total-card {
background: linear-gradient(135deg,#e74a3b,#f6c23e);
}
table {
border-radius: 15px;
overflow: hidden;
}
th {
background: linear-gradient(135deg,#36b9cc,#1cc88a);
}
body {
font-family: 'Poppins', sans-serif;
margin: 0;
background: #f4f6fb;
}
header {
background: linear-gradient(135deg,#4e73df,#1cc88a);
color: white;
padding: 15px;
text-align: center;
}
nav {
display: flex;
justify-content: space-around;
background: white;
padding: 10px;
box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}
nav button {
border: none;
background: #e3e6f0;
padding: 8px 12px;
border-radius: 20px;
cursor: pointer;
font-weight: 600;
}
nav button:hover {
background: #4e73df;
color: white;
}
.tab {
display: none;
padding: 20px;
}
.tab.active {
display: block;
}
.card {
background: white;
padding: 15px;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
input, select {
padding: 8px;
margin: 5px 0;
width: 100%;
border-radius: 8px;
border: 1px solid #ccc;
}
button {
background: #1cc88a;
color: white;
border: none;
padding: 8px 12px;
border-radius: 8px;
cursor: pointer;
}
table {
width: 100%;
border-collapse: collapse;
background: white;
border-radius: 10px;
overflow: hidden;
}
th {
background: #4e73df;
color: white;
padding: 10px;
}
td {
padding: 10px;
border-bottom: 1px solid #eee;
}
tr:hover {
background: #f2f2f2;
}
.card label {
font-weight: 600;
}
table {
width: 100%;
border-collapse: collapse;
background: white;
}
th {
background: #1cc88a;
color: white;
padding: 10px;
}
td {
padding: 10px;
border-bottom: 1px solid #eee;
}
.delete-btn {
background: red;
padding: 5px 10px;
border-radius: 5px;
}