-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
111 lines (91 loc) · 1.91 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
body{
background-color:#160BE2;
font-family: 'Space Mono', monospace;
border-style: solid;
border-color: #ffe200;
border-width: 15px;
margin: 0px;
height: 97vh;
overflow: hidden;
}
.container{
max-width :400px;
margin: 20px auto 0px auto;
text-align: center;
}
.score{
padding-top: 20px;
font-size: 25px;
color: #ffe200;
}
.emoji{
font-size: 30px;
}
.mainemoji{
font-size: 50px;
}
.Title{
font-size: 30px;
margin-bottom: 20px;
color: white;;
}
.explanation{
color: white;
font-size: 20px;
padding: 0 0.9vw 0 0.9vw;
max-width: 370px;
margin: auto;
margin-bottom: 40px;
}
.recognitionText{
margin-top: 30px;
}
.loadingText{
font-size: 25px;
line-height: 1.7;
margin-top: 50px;
color: #ffe200;
padding: 0.8vw 1.8vw 0.8vw 1.8vw;
}
.finaltext{
font-size: 25px;
line-height: 1.7;
margin-top: 50px;
color: white;
padding: 0.8vw 1.8vw 0.8vw 1.8vw;
}
#Button{
background-color:#ffe200;
-moz-border-radius:18px;
-webkit-border-radius:18px;
border-radius:18px;
border:none;
display:inline-block;
cursor:pointer;
color: #160BE2;
font-size:16px;
padding:10px 15px;
text-decoration:none;
}
#Button:hover {
background-color: rgb(214, 200, 0) ;
}
#Button:active {
position:relative;
background-color: darkblue;
top:3px;
}
.blink {
animation:fade 1500ms infinite;
-webkit-animation:fade 1500ms infinite;
}
@keyframes fade {
from { color : rgb(0, 4, 255,1) ; }
50% { color: rgba(0, 4, 255,0.2) ; }
to { color: rgba(0, 4, 255,1); }
}
@-webkit-keyframes fade {
from { opacity: 1.0; }
50% { opacity: 0.7; }
to { opacity: 1.0; }
}