forked from IMQS/onboard-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.css
More file actions
104 lines (79 loc) · 1.5 KB
/
app.css
File metadata and controls
104 lines (79 loc) · 1.5 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
body{
background-image: url("https://previews.123rf.com/images/provector/provector1303/provector130300080/18783350-abstract-technology-database-background.jpg");
}
table {
top: 6%;
bottom: 20;
left: 0;
right: 0;
width: 100%;
height: 100%;
table-layout: fixed;
position: relative;
text-align: left;
}
body{
overflow: hidden;
}
th {
width: 100/11%;
border: 2px solid red;
background-color: red;
}
tr:hover td{
background-color: blueviolet;
}
td {
width: 100/11%;
border: 2px solid blue;
background:black;
color: yellow;
}
.searchButtons{
top:1%;
left: 50%;
border-radius: 20px;
background-color: blueviolet;
border: none;
color: white;
padding: 8px 16px;
text-align: center;
display: inline-flex;
font-size: 16px;
margin: 0%;
-webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.4s;
cursor: pointer;
height: 20px;
}
#previousPage{
top:1%;
float: left;
border-radius: 20px;
border: none;
background-color:blueviolet;
color: white;
padding: 8px 16px;
text-align: center;
/* display: inline-flex; */
font-size: 16px;
-webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.4s;
cursor: pointer;
}
#nextPage {
top:1%;
float: right;
transition: 0.5s;
border-radius: 20px;
border: none;
background-color: blueviolet;
color: white;
padding: 8px 16px;
text-align: center;
/* display: inline-flex; */
font-size: 16px;
-webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.4s;
cursor: pointer;
}