-
Notifications
You must be signed in to change notification settings - Fork 36
/
end.css
111 lines (107 loc) · 1.96 KB
/
end.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
*{
margin: 0;
padding: 0;
}
body{
background-image: url('blue-bg.jpg');
background-size:cover;
color: white;
/* color: grey; */
}
.container{
position: absolute;
/* border: 2px solid white; */
/* background-color: aqua; */
background-color: rgb(196, 188, 188);
top: 40%;
left: 50%;
transform: translate(-50%,-50%);
height: auto;
width: 33vw;
border-radius: 20px;
}
.score{
background:linear-gradient(rgb(236, 61, 8), rgb(167, 32, 32), rgb(94, 5, 5));
height: auto;
padding: 5px;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
border-radius: 20px;
}
#yourScore, #finalScore{
font-size: 2.5vw;
font-weight: bold;
}
.over{
background-color: rgb(87, 80, 80);
border-radius: 20px;
font-size: 3.7vw;
font-weight: bold;
height: auto;
}
.form{
background: linear-gradient(rgb(196, 188, 188),rgb(94, 88, 88));
height: auto;
font-family: Arial, Helvetica, sans-serif;
color: black;
padding: 3% 0;
text-align: center;
}
#username{
font-size: 1.5vw;
margin-left: 0;
height: auto;
border-radius: 10px;
padding: 1%;
/* line-height: 4rem; */
}
#end-text{
text-align: center;
font-size: 2vw;
}
/* .in{
margin-left: 50px;
} */
.btn{
height: auto;
background-color: rgb(27, 138, 27);
font-size: 1.7vw;
width: 100px;
color: white;
border-radius: 15px;
}
.btn:hover{
color: rgb(10, 9, 9);
}
.button{
display: flex;
flex-direction: row;
justify-content: space-between;
margin: 30px;
}
.button a{
height: auto;
width: 120px;
text-align: center;
padding-top: 5px;
text-decoration: none;
}
.button a:hover{
height: auto;
width: 120px;
text-align: center;
padding-top: 5px;
color: black;
}
@media (max-width: 800px) {
.container{
width: 50vw;
}
#username, .btn{
font-size: 3vw;
margin: 2%;
}
.btn{
padding: 2%;
}
}