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
/
style2.css
97 lines (78 loc) · 1.35 KB
/
style2.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
body{
background: #333;
font-family: sans-serif, Arial, Helvetica;
}
.button {
font-weight: bolder;
flex: 1;
background: #444;
color: #f0f0f0;
font-size: 1.3rem;
text-transform: uppercase;
letter-spacing: 3px;
padding: 0 72px;
border-radius: 45px;
-webkit-border-radius: 45px;
-moz-border-radius: 45px;
border-margin: 0 24px;
border: 1px solid #f0f0f0;
height: 70px;
text-decoration: none;
text-align: center;
vertical-align: middle;
/* display: block; */
align-items: center;
display: flex;
flex-direction: column;
justify-content: center;
width:100%;
}
.button:hover, .button:active {
background: #f0f0f0;
color: #333;
}
.txtlbl {
color: white;
text-decoration: none;
text-align: center;
vertical-align: middle;
min-width: 250px;
max-width: 250px;
}
#container {
height: 100%;
width: 100%;
}
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%);
}