-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (52 loc) · 979 Bytes
/
style.css
File metadata and controls
60 lines (52 loc) · 979 Bytes
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
font-family: Arial, Helvetica, sans-serif;
height: 100vh;
}
.container{
max-width: 1100px;
margin: 0 auto;
padding: 2rem;
box-shadow: 0px 5px 10px rgba(0,0,0,0.4);
border-radius: 10px;
}
h1{
text-align: center;
margin: 50px 0;
font-size: 3rem;
}
.filter-input{
width: 100%;
margin-bottom: 2rem;
height: 45px;
padding: 0.5rem 2rem;
border: 1px solid #ccc;
border-radius: 10px;
outline: none;
font-size: 1rem;
}
table{
border-collapse: collapse;
width: 100%;
}
th, td{
text-align: center;
padding: 8px;
}
tr:nth-child(even){
background-color: #ccc;
}
.no-item{
border: 1px solid #ccc;
padding: 1rem;
border-left: 5px solid red;
background-color: pink;
color: red;
border-radius: 8px;
font-size: 1.6rem;
text-align: center;
}