-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
114 lines (88 loc) · 1.56 KB
/
style.css
File metadata and controls
114 lines (88 loc) · 1.56 KB
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
/*
font-family: 'Dancing Script', cursive;
cursive ^
font-family: 'Dancing Script', cursive;
FONTS ^*/
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-color: rgb(169, 222, 239);
}
.container-all {
display: flex;
flex-direction: column;
align-items: center;
position: fixed;
top: 25px;
left: 400px;
width: 60%;
border: 15px groove rgb(255, 255, 255);
border-radius: 15%;
padding: 2%;
}
.game-title {
border: 20px double rgb(250, 252, 252);
padding: 30px 80px;
border-radius: 20%;
}
h1 {
text-align: center;
}
.scores {
display: flex;
gap: 40px;
justify-content: center;
font-family: 'Dancing Script', cursive;
font-size: 2em;
margin-top: 40px;
margin-bottom: 40px;
}
.instructions {
font-family: 'Dancing Script', cursive;
font-size: 3em;
text-align: center;
text-decoration: underline;
}
.round-limit{
margin-bottom:50px;
font-weight:bolder;
font-size:2em;
}
.container {
display: flex;
justify-content: space-evenly;
align-items: center;
}
button img {
width: 50%;
height: 100px;
}
.container {
margin: 0 auto;
width: 60%;
}
.container button {
width: 30%;
padding: 15px;
}
.reset {
margin-bottom: 15px;
margin-top: 40px;
padding: 1% 2%;
}
.outcome {
text-align: center;
}
.player-won {
color: green;
font-family: 'Dancing Script', cursive;
font-size: 2em;
}
.comp-won {
color: red;
font-family: 'Dancing Script', cursive;
font-size: 2em;
}