-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathstyle.css
More file actions
94 lines (90 loc) · 1.63 KB
/
style.css
File metadata and controls
94 lines (90 loc) · 1.63 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
.container{
margin-top: 20px;
}
.alert {
padding: 20px;
width: 70%;
color: white;
margin: auto;
text-align: center;
}
.alert-danger{
background-color: #f44336;
}
.alert-success{
background-color: #28a745;
}
.title{
color: blue;
text-align: center;
}
#book-form{
text-align: center;
padding: 10px;
}
input[type=text],input[type=date]{
width: 25%;
padding: 6px;
}
.btn{
background-color: blue;
color: #fff;
width: 25%;
padding: 7px;
border: none;
font-size: 20px;
}
.score{
display: grid;
grid-template-columns: auto auto;
font-size: 1.2rem;
color: #fff;
}
.score p:first-child{
background: #28a745;
padding: 10px;
}
.score p:last-child{
background: #f44336;
padding: 10px;
}
#table-head, #complete-table-head{
text-align: center;
margin:40px ;
font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif;
border-collapse: collapse;
width: 70%;
}
#table-head th, #table-head td, #complete-table-head th, #complete-table-head td{
border: 1px solid #ddd;
padding: 8px;
}
#table-head tr:nth-child(even){
background-color: #f2f2f2;
}
#table-head tr:hover,#complete-table-head tr:hover{
color: #ddd;
}
#table-head th{
padding-top: 12px;
padding-bottom: 12px;
background-color: rgb(52, 52, 221);
color: #fff;
}
#complete-table-head{
padding-top: 12px;
padding-bottom: 12px;
background-color: green;
color: #fff;
}
label{
font-size: 20px;
}
.complete-btn{
background-color: lightseagreen;
margin: 5px;
}
.completed{
text-decoration: line-through;
opacity: 0.7;
}