-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyl2.css
More file actions
126 lines (108 loc) · 1.81 KB
/
styl2.css
File metadata and controls
126 lines (108 loc) · 1.81 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
body {
font-family: 'Poppins', sans-serif;
margin: 0;
background: #f4f6fb;
}
/* HEADER */
header {
background: linear-gradient(135deg,#4e73df,#1cc88a);
color: white;
padding: 15px;
text-align: center;
}
/* NAV */
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;
}
/* TABS */
.tab {
display: none;
padding: 20px;
}
.tab.active {
display: block;
}
/* CARD */
.card {
background: white;
padding: 15px;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.card label {
font-weight: 600;
}
/* INPUT */
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;
}
/* SUMMARY GRID */
.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 */
table {
width: 100%;
border-collapse: collapse;
background: white;
border-radius: 12px;
overflow: hidden;
}
th {
background: linear-gradient(135deg,#36b9cc,#1cc88a);
color: white;
padding: 10px;
}
td {
padding: 10px;
border-bottom: 1px solid #eee;
}
tr:hover {
background: #f2f2f2;
}
.delete-btn {
background: red;
padding: 5px 10px;
border-radius: 5px;
}