-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
120 lines (105 loc) · 1.84 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
* {
padding: 0px;
margin: 0px;
}
body {
background-color: black;
color: #F05454;
font-size: 18px;
}
a {
color: #6c7ae0;
}
h1{
text-align: center;
margin: 10px 0px;
}
tr,
th,
td {
border: solid 1px #DDDDDD;
}
tr,
td {
text-align: center;
}
td {
padding: 10px;
}
/*background color for all the ODD background rows */
tr:nth-child(odd) {
background: #222831;
color: #DDDDDD;
}
/*background color for all the EVEN background rows */
tr:nth-child(even) {
background: #30475E;
color: antiquewhite;
}
thead tr {
background: #30475E !important;
}
.cmd-search {
width: 50%;
padding: 15px;
text-align: center;
font-weight: 900;
border: thin #6c7ae0 1px;
border-radius: 25px;
margin-right: 25%;
margin-left: 25%;
margin-bottom: 10px;
margin-top: 10px;
}
.footer {
margin-top: 10px;
margin-bottom: 10px;
padding: 10px;
text-align: center;
}
#myBtn {
display: none;
position: fixed;
bottom: 20px;
right: 30px;
z-index: 99;
font-size: 18px;
border: none;
outline: none;
background-color: #F05454;
color: white;
cursor: pointer;
padding: 15px;
border-radius: 4px;
}
#myBtn:hover {
background-color: #30475E;
}
.font-size {
text-align: center;
}
.button {
background-color: #6c7ae0;
border: none;
color: #DDDDDD;
padding: 7.5px 16px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
@media only screen and (max-width: 1044px) {
.cmd-search {
width: 95%;
padding: 15px;
text-align: center;
font-size: 10px;
font-weight: 900;
border: thin #6c7ae0 1px;
border-radius: 0px;
margin-right: 2.5%;
margin-left: 2.5%;
}
}