-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
97 lines (83 loc) · 1.38 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
body {
/* margin: 0em 14em 0em 14em; */
font-family: "Jolly Lodger", sans-serif;
/* background-color: #FFFF; */
}
.header {
display:flex;
height: 261px;
}
.header h1 {
font-size: 96px;
flex:1;
text-align:center;
/* display:flex; */
}
.middle {
display:flex;
height:275px;
}
.player, .buttons, .computer {
flex:1;
}
.player h3, .computer h3{
text-align:center;
font-size:48px;
text-decoration: underline ;
text-decoration-style: solid;
margin-top:0;
margin-bottom:0;
}
.player p, .computer p{
text-align:center;
font-size:36px;
margin-top:0;
margin-bottom:0;
}
.buttons {
display:flex;
gap:50px;
justify-content: center;
}
.buttons img{
flex:1;
height: 167px;
width: auto;
}
.buttons button {
border-radius:25px;
height:167px;
width:auto;
}
.result {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.result p {
flex:1;
font-size:64px;
text-align: center;
margin-top:0;
margin-bottom:45px;
}
.resultPage {
display:block;
}
#gameResult {
text-align: center;
font-size:96px;
}
.resultPage a{
display:block;
text-align:center;
font-size:36px;
}
#submit {
visibility:hidden;
flex:1;
width:100px;
font-size: 24px;
font-family: "Jolly Lodger", sans-serif;
}