This repository has been archived by the owner on Mar 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
107 lines (85 loc) · 1.82 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
@font-face {
font-family: 'sansationregular';
src: url('Sansation-Regular-webfont.eot');
src: url('Sansation-Regular-webfont.eot?#iefix') format('embedded-opentype'),
url('Sansation-Regular-webfont.woff') format('woff'),
url('Sansation-Regular-webfont.ttf') format('truetype'),
url('Sansation-Regular-webfont.svg#sansationregular') format('svg');
font-weight: bold;
font-style: normal;
}
body {
color: white;
background-color: black;
height: 100%;
/* width: 100%; */
margin: 0px;
padding: 5px;
background-color: black;
font-family: 'sansationregular';
}
img#alertdisplay {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
-webkit-animation: fade 2s alternate infinite;
animation: fade 2s alternate infinite;
display: block;
}
@-webkit-keyframes fade {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes fade {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
#textdisplay {
font-size: 40px;
position: fixed;
top: 50%;
left: 50%;
/* bring your own prefixes */
transform: translate(-50%, -50%);
}
.button {
border: 0px;
background: #aaa;
padding: 12px 24px;
-webkit-border-radius: 17px;
-moz-border-radius: 17px;
border-radius: 17px;
color: #000000;
font-size: 22px;
font-family: sansationregular,Helvetica, Arial, Sans-Serif;
text-decoration: none;
vertical-align: middle;
min-width: 270px;
}
.button:hover {
background: #ffffff;
color: #000;
.button:active {
background: #000000;
}
.txtlbl {
color: white;
text-decoration: none;
text-align: center;
vertical-align: middle;
min-width: 250px;
max-width: 250px;
}
#container {
height: 100%;
width: 100%;
}