-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
141 lines (120 loc) · 2.03 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
* {
box-sizing: border-box;
}
body {
margin: 0;
min-width: 250px;
}
header {
background-color: black;
color:white;
display:flex;
align-items:center;
justify-content:space-between;
}
h1 {
text-align: center;
text-transform: uppercase;
margin: 0;
border-bottom: 3px solid darkred;
white-space: nowrap;
}
#Insert {
display: flex;
}
.checked {
text-decoration: overline underline wavy red;;
}
[close] {
right: 0;
top: 0;
padding: 12px 16px 12px 16px;
color:red;
background-color: white;
}
[close]:hover {
background-color: #f44336;
color: white;
}
/* Clear floats after the header */
.header:after {
content: "";
display: table;
clear: both;
}
input[type='text'] {
margin: 0;
border: none;
border-radius: 0;
width: 75%;
padding: 10px;
float: left;
font-size: 16px;
}
.myInput {
font-size: 16px;
padding: 12px 20px 12px 40px;
border: 1px solid #ddd;
display: flex;
align-items: center;
}
#Add, #Search {
padding: 10px;
height: 100%;
float: left;
text-align: center;
font-size: 16px;
cursor: pointer;
transition: 0.3s;
border-radius: 0;
color:green;
background-color: white;
align-self: center;
}
#Add:hover, #Search:hover {
background-color: green;
color: white;
}
#Search {
color:grey;
background-color: white;
}
#Search:hover {
background-color: grey;
color: white;
}
table, th, td {
border-bottom: 1px solid #ddd;
text-align: center;
}
table th, table td {
padding: 12px;
}
table th, h1 {
background-color: #000;
color: white;
}
table tr:hover, table tr:hover a {
background-color: rgb(113, 170, 255);
color: white;
}
table tr:hover a, table tr:hover span {
background-color: rgb(255, 165, 21);
padding: 5px;
box-shadow: 5px -5px black;
text-shadow: 1px -1px 0px #000000;
}
table tr a:hover {
background-color: rgb(255, 217, 0);
box-shadow: -5px 5px black;
text-shadow: -1px 1px 0px #000000;
}
table {
border-collapse: collapse;
width: 100%;
font-size: 18px;
}
table td a {
text-decoration: none;
color: black;
}