-
-
Notifications
You must be signed in to change notification settings - Fork 120
/
style.css
76 lines (76 loc) · 1.61 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
body{
margin: 0px;
padding: 0px;
background-color: rgb(80, 175, 212);
}
.page-container{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.heading{
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
color: rgb(6, 41, 81);
}
.container{
border: 1px solid rgb(56, 53, 53);
border-radius: 12px;
width: 500px;
height: 400px;
background-color: #fff;
display: flex;
justify-content: center;
align-items: center;
padding: 20px 30px;
flex-direction: column;
}
.game-box{
display: flex;
justify-content: center;
align-items: center;
}
.player-chosen, .computer-chosen{
border: 2px solid rgb(95, 88, 88);
border-radius: 12px;
width: 200px;
height: 280px;
margin: 20px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.player-chosen img, .computer-chosen img{
height: 150px;
/* width: 200px; */
}
.choose-box{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.choose-box .options{
height: 140px;
width: 200px;
display: flex;
justify-content: center;
/* border: 1px solid black; */
}
.options img{
margin: 5px 10px;
cursor: pointer;
}
.options img:active{
transform: scale(.96);
}
.text-head{
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.result{
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: 1.3rem;
font-weight: 600;
color: rgb(6, 129, 23);
}