-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
113 lines (77 loc) · 1.55 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
@import url('https://fonts.googleapis.com/css2?family=Gamja+Flower&display=swap');
*{
font-family: 'Gamja Flower', cursive;
font-size: 40px;
}
.header{
height: 100px;
display: flex;
justify-content: center;
align-items: center;
background-color: #00807a;
}
.winner_msg{
display: none;
}
.choice_container{
/* border: 5px solid black; */
/* border-radius: 10px; */
height: 390px ;
display: flex;
justify-content: space-around;
align-items: center;
background-color: #00FFFF;
}
.c_choice{
color:yellow;
}
.score_container{
/* border: 2px solid black; */
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color : #00807a;
}
.score_container div{
margin-top: 7px;
}
.switch{
display: flex;
}
.switch div {
justify-content: center;
align-items: center;
}
img{
width: 180px;
height: 180px;
}
.img{
border: 10px solid #4eb721;
border-radius: 10px;
width: 200px;
height: 200px;
display: flex;
justify-content: center;
align-items: center;
background-color:yellow;
box-shadow: inset 0 0 0 0 #ff6d94f7;
transition: ease-out 0.3s;
}
.img:hover{
box-shadow: inset 280px 0 0 0 #ff6d94f7;
}
.footer{
margin: 10px;
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
height: 40px;
}
.copy{
font-size: 20px;
font-family: 'Courier New', Courier, monospace;
font-weight:bolder;
}