-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
128 lines (109 loc) · 1.8 KB
/
styles.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
119
120
121
122
123
124
125
126
127
* {
font-family: 'Quicksand', sans-serif;
margin: 0;
padding: 0;
}
body {
background-color: #E7D9EA;
opacity: 85%;
width: 100vw;
height: 100vh;
display: flex;
justify-content: space-between;
}
h1{
font-size: 60px;
color: #E7D9EA;
margin: 25px;
}
h2{
font-size: 45px;
margin: 12px;
color: #E7D9EA;
}
h3{
color: black;
}
p{
font-size: 21px;
}
button{
background-color: #16C79A;
color: black;
margin: 25px;
height: 85px;
width: 150px;
border: 5px solid black;
border-radius: 25px;
font-size: 21px;
cursor: pointer;
}
button:disabled{
background-color: slategray;
border: 5px solid slategray;
cursor: not-allowed;
}
.player-section{
width: 25vw;
background-color: #11698E;
text-align: center;
border: 5px solid #E7D9EA;
}
.game-container{
width: 75vw;
text-align: center;
background-color: #19456B;
border: 5px solid #16C79A;
}
.game-choice{
background-color: #11698E;
border: 5px solid black;
color: #E7D9EA ;
border-radius: 15px;
padding: 8px;
width: 250px;
font-size: 16px;
cursor: pointer;
}
.fighter{
height: 10rem;
width: 10rem;
cursor: pointer;
}
.choices-styling{
padding: 80px;
display: flex;
flex-direction: column;
align-items: center;
}
.player {
height: 150px;
width: 150px;
}
.hidden {
display: none;
}
#spicy, #vanilla{
margin: 10px;
background-color: #16C79A;
color: black;
}
#fighter {
height: 30px;
width: 30px;
}
#humanWins, #cpuWins {
font-size: 36px;
}
#resultMsg{
font-size: 50px;
color: #E7D9EA;
}
#battleView{
margin: 25px;
display: grid;
grid-row-gap: 20px;
grid-column-gap: 20px;
justify-items: center;
grid-template-columns: 1fr 1fr;
}