-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
72 lines (64 loc) · 1.19 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
* {
margin: 0px;
padding: 0px;
font-family: 'Times New Roman';
box-sizing: border-box;
}
.nav {
background-color: red;
color: yellow;
text-align: center;
padding: 20px;
font-size: 20px;
}
.main-box {
border: 5px dotted black;
height: fit-content;
width: fit-content;
display: flex;
align-items: center;
justify-content: center;
gap: 50px;
padding: 20px;
margin: auto;
margin-top: 20px;
}
.box {
border: 10px dashed blue;
border-radius: 25px;
background-color: red;
height: 300px;
width: 200px;
cursor: pointer;
}
.box:hover {
box-shadow: 0px 0px 20px 10px blue;
}
img {
height: 100%;
width: 100%;
}
.score {
height: auto;
width: auto;
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
margin-top: 20px;
}
#user, #computer {
height: auto;
width: auto;
text-align: center;
font-size: 20px;
}
#result {
border: 2px dashed black;
border-radius: 50px;
padding: 20px;
text-align: center;
font-size: 30px;
font-weight: bold;
margin-top: 20px;
}