-
Notifications
You must be signed in to change notification settings - Fork 0
/
waves.css
83 lines (70 loc) · 1.1 KB
/
waves.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
html, body {
/* max-width: 100px; */
/* max-height: 100px; */
margin: 0;
background: #DCECC9;
overflow: unset;
font-family: Arial, Helvetica, sans-serif;
}
html, body, table {
height: 100%!important;
}
table {
border-collapse: collapse;
font-size: 10px;
width: 100%;
}
table, th, td {
border: none;
}
td {
transition: all 0.2s;
text-align: center;
}
.footer {
opacity: 0.9;
position: fixed;
bottom: 0;
color: #ffffff;
background-color: #000000;
width: 100%;
text-align: right;
}
.footer p {
font-size: 12px;
margin-right: 30px;
font-family: Arial, Helvetica, sans-serif
}
.footer p span {
font-size: 12px;
color: rgb(255, 70, 70);
}
.footer p a {
color: #ffffff;
text-decoration: none;
}
.footer p a:hover {
color: rgb(255, 70, 70);
}
.menu {
color: #ffffff;
position: absolute;
top: 10px;
left:10px;
padding: 10px;
border: 1px solid #ccc;
background: #00000059;
text-align: center;
opacity: 0.2;
}
.menu h4 {
color: #000000;
margin: 7px 0px;
background: #ffffffad;
}
.menu:hover {
opacity: 1;
}
.menu hr {
border-color: black;
}