-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathguessNumber.css
118 lines (104 loc) · 2.53 KB
/
guessNumber.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
118
@import url('https://fonts.googleapis.com/css2?family=Bruno+Ace+SC&family=Castoro+Titling&family=Shadows+Into+Light&display=swap');
@import url('https://fonts.googleapis.com/css?family=Press+Start+2P&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alegreya:wght@900&family=Bruno+Ace+SC&family=Castoro+Titling&family=Shadows+Into+Light&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alegreya:wght@900&family=Bruno+Ace+SC&family=Castoro+Titling&family=Shadows+Into+Light&family=Ubuntu:wght@700&display=swap');
body{
background-color: rgba(0, 0, 0, 0.744);
margin-top: 120px;
margin-left: 50px;
}
.heading{
color: rgb(255, 255, 255);
text-decoration: underline;
font-size: 50px;
justify-content: center;
font-weight: bolder;
text-align: center;
font-family: 'Bruno Ace SC', cursive;
}
.number1{
display: flexbox;
justify-content: center;
text-align: center;
padding: 20px;
/* border: 5px solid red; */
font-size: 30px;
font-family: 'Press Start 2P', sans-serif;
color: white;
}
.guess{
width: 75px;
padding-left: 15px;
height: 50px;
font-size: 35px;
font-family: 'Alegreya', serif;
text-align: center;
background: transparent;
text-decoration: none;
border: none;
left: 684px;
color: rgb(255, 255, 255);
border: 2px dotted black;
font-weight: bolder;
position: relative;
}
.button{
position: relative;
top: 80px;
border-radius: 50px;
font-size: 15px;
width: 160px;
font-family: 'Press Start 2P', sans-serif;
height: 40px;
left: 430px;
border: none;
transition: all 1s;
}
.button:hover{
cursor: pointer;
background-color: blue;
color: white;
}
.score{
font-family: 'Ubuntu', sans-serif;
font-weight: bolder;
color: white;
font-size: 35px;
top: 100px;
left: 1150px;
position: relative;
}
.correct{
font-family: 'Ubuntu', sans-serif;
font-weight: bolder;
color: white;
font-size: 31px;
left: 1150px;
top: 100px;
position: relative;
}
.refresh{
position: relative;
top: -155px;
border-radius: 50px;
font-size: 15px;
width: 160px;
font-family: 'Press Start 2P', sans-serif;
height: 40px;
left: 800px;
border: none;
transition: all 1s;
}
.refresh:hover{
background-color: rgb(255, 0, 0);
color: rgb(0, 0, 0);
cursor: pointer;
}
.img{
height: 300px;
top: -220px;
width: 300px;
display: block;
left: -10px;
position: relative;
}