-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathentityCSS.css
More file actions
129 lines (113 loc) · 2.22 KB
/
Copy pathentityCSS.css
File metadata and controls
129 lines (113 loc) · 2.22 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
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
.ResultsTableDiv {
text-align: center;
margin-left: 20%;
margin-right:20%;
margin-top: 10px;
background-color: #df9a45;
padding-top: 10px;
padding-bottom: 10px;
border-radius: 10px;
width: 50%;
}
/* .ResultsTableDiv hr {
width: 50%;
} */
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 80%;
margin-left: 5%;
margin-right: 5%;
text-align: center;
}
td, th {
border: 1px solid #000000;
text-align: center;
padding: 8px;
font-size: 13px;
width: 50%;
}
th {
text-align: center;
font-size: 18px;
}
tr:nth-child(even) {
background-color: #89663b;
}
tr:nth-child(odd) {
background-color: #A38B5F;
}
.newRowbutton, .deleteButton {
background-color: #679c5f;
border: none;
color: #fff;
padding: 10px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 4px;
width: 100%;
}
/* The Modal (background) */
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
padding-top: 100px; /* Location of the box */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
/* Modal Content */
.modal-content {
background-color: #fefefe;
margin: auto;
padding: 20px;
border: 1px solid #888;
width: 80%;
text-align: center;
}
.modal-content h1 {
text-align: center;
}
.modal-content hr {
margin: 20px;
}
/* The Close Button */
.close {
color: #aaaaaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
.search {
margin-bottom: 15px;
}
.search input[type=text] {
padding: 6px;
margin-top: 8px;
font-size: 17px;
border: none;
}
.search button {
padding: 6px 10px;
margin-top: 8px;
margin-right: 16px;
background: #679c5f;
font-size: 17px;
border: none;
cursor: pointer;
}