-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
115 lines (101 loc) · 2.24 KB
/
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
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
body {
background-image: linear-gradient(to right top, #051937, #004d7a, #008793, #00bf72, #a8eb12);
font-family: Arial, sans-serif;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
h1 {
font-size: 48px;
color: #f5f5f5;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
margin-bottom: 20px;
font-style: italic;
}
.attendance-box {
background-color: #ffffff;
padding: 30px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
text-align: center;
max-width: 300px;
width: 95%;
margin-bottom: 20px;
transition: transform 0.3s ease;
transform: scale(1);
display: flex;
flex-direction: column;
}
.attendance-box:hover {
transform: scale(1.1);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
input, button {
width: 100%;
margin-bottom: 15px;
padding: 10px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 5px;
}
button {
background-color: #4caf50;
color: white;
cursor: pointer;
transition: background-color 0.3s ease;
padding: 12px 40px;
}
button a{
color: rgb(0, 0, 0);
cursor: pointer;
transition: background-color 0.3s ease;
text-decoration: none;
font-size: 15px;
font-weight: 700;
}
button:hover {
background-color: #45a049;
}
#attendanceTable {
width: 100%;
margin-top: 20px;
}
#attendanceTable th, #attendanceTable td {
border: 1px solid #ddd;
padding: 8px;
text-align: center;
}
footer {
background-color: #000;
font-family: 'Bricolage Grotesque', sans-serif;
font-weight: bold;
color: #fff;
text-align: center;
padding: 10px 0;
font-size: 15px;
position: fixed;
top: 96%;
bottom: 0;
width: 100vw;
right: 0px;
}
@media only screen and (min-width: 375px) and (max-width:667px) {
h1 {
font-size: 30px;
color: #f5f5f5;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
margin-bottom: 20px;
}
}
@media only screen and (min-width: 360px) and (max-width:740px) {
h1 {
font-size: 30px;
color: #f5f5f5;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
margin-bottom: 20px;
}
}