-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
95 lines (95 loc) · 1.86 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
html {
box-sizing: 'border-box';
}
.center {
text-align: center;
}
#guessInputDiv {
width: 160px;
margin: 0px auto;
position: relative;
margin-top: 10%;
margin-bottom: 5%;
}
#guessInput {
width: 160px;
border-radius: 100%;
height: 160px;
font-size: 100px;
text-align: center;
font-weight: 100;
}
ul {
list-style: none;
padding: 0;
}
.list-item {
display: inline;
border: 1px solid black;
font-size: 60px;
padding: 0 25px;
background-color: white;
}
img {
display: inline;
width: 200px;
height: 100px;
}
#footer {
width: 100%;
border-top: solid 2px black;
background-color: white;
position: fixed;
bottom: 0;
}
.footer-logo {
display: inline-block;
}
.btn-circle.btn-xl {
width: 60px;
height: 60px;
padding: 16px 16px;
border-radius: 35px;
font-size: 20px;
position: absolute;
top: 65%;
left: 72%;
}
body {
background: url(images/598831066.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
@keyframes flickerAnimation {
0% { opacity:1; }
50% { opacity:0; }
100% { opacity:1; }
}
@-o-keyframes flickerAnimation{
0% { opacity:1; }
50% { opacity:0; }
100% { opacity:1; }
}
@-moz-keyframes flickerAnimation{
0% { opacity:1; }
50% { opacity:0; }
100% { opacity:1; }
}
@-webkit-keyframes flickerAnimation{
0% { opacity:1; }
50% { opacity:0; }
100% { opacity:1; }
}
#ticker {
-webkit-animation: flickerAnimation 1s infinite;
-moz-animation: flickerAnimation 1s infinite;
-o-animation: flickerAnimation 1s infinite;
animation: flickerAnimation 1s infinite;
font-size: 30px;
display: inline;
}
#subtitle {
display: inline;
}