-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
117 lines (114 loc) · 2.41 KB
/
main.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
112
113
114
115
116
117
*{
box-sizing: border-box;
padding: 0;
margin: 0;
}
body{
background-color: #3C565B;
}
header{
background-color: whitesmoke;
padding: 20px;
}
header>h1{
color: #2b2b2b;
text-align: center;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.score-bord{
border: 3px solid whitesmoke;
width: 200px;
margin: 20px auto;
text-align: center;
color: whitesmoke;
font-size: 30pt;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
padding: 18px 14px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
position: relative;
}
.badge{
background-color:#C11B17 ;
color: whitesmoke;
padding: 2px 10px;
font-size: 15px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#user-label{
position: absolute;
top: 40%;
left: -25px;
}
#comp-label{
position: absolute;
top: 40%;
right: -45px;
}
.result{
font-size: 30px;
color: whitesmoke;
}
.result>p{
text-align: center;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-weight: bold;
}
.images{
text-align: center;
margin: 50px 0;
}
.choice{
display: inline-block;
padding: 5px;
margin: 0 10px;
transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.choice>img{
width: 130px;
}
.choice:hover{
cursor: pointer;
transform: scale(1.1);
}
#massage{
text-align: center;
color: whitesmoke;
font-family:Georgia, 'Times New Roman', Times, serif;
font-weight: bold;
font-size: 20px;
}
.green-glow{
border: 4px solid #4dcc7d;
box-shadow: 0 0 10px #31b43a;
border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
}
.red-glow{
border: 4px solid #df2b2b;
box-shadow: 0 0 10px #b43142;
border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
}
.blue-glow{
border: 4px solid #4da6cc;
box-shadow: 0 0 10px #3170b4;
border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
}