-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
52 lines (49 loc) · 1.26 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
body {
font-family: 'Courier New', Courier, monospace;
background-color: #f8f9fa;
}
.table thead th {
background-color: #f8f9fa;
}
.table tbody tr.selected {
background-color: #e9ecef;
}
.table tbody tr.selected td {
background-color: #e9ecef;
}
.table tbody tr.selected td:first-child {
background-color: #007bff;
color: white;
}
.table tbody tr.selected td:first-child i {
color: white;
}
.table tbody tr td input {
width: 100%;
border: 1px solid #ced4da;
padding: 0.375rem 0.75rem;
border-radius: 0.25rem;
}
.icon-bar {
margin-bottom: 1rem;
display: inline;
}
.icon-bar i {
font-size: 1.5rem;
/* margin-right: 1rem; */
cursor: pointer;
}
input{
border:none;
outline: none;
}
#heading{
display: flex;
flex-direction: row;
}
h1{
margin: 1rem;
padding: 1rem;
display: inline;
margin-right: 40%;
}