-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
119 lines (98 loc) · 2.38 KB
/
Copy pathstyles.css
File metadata and controls
119 lines (98 loc) · 2.38 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
115
116
117
118
119
body {
background-color: #000000;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
img {
width: 2rem;
height: 2rem;
vertical-align: middle;
}
/*Start Screen */
#start-container {
margin: 5rem auto;
text-align: center;
}
#start-btn {
height: 5rem;
width: 15rem;
font-size: x-large;
}
/* Game Logistics */
#game-title {
text-align: center;
font-size: 3rem;
font-weight: 600;
color: #000000;
background-color: #Ffff00;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
#game {
display: none;
max-width: 500px;
max-height: 400px;
background-color: #Ffff00;
color: #000000;
margin: 5rem auto;
padding: 1rem;
align-items: center;
flex-direction: column;
border-radius: 10px;
}
/* Lives and the Hints */
#guesses {
display: flex;
flex-direction: column;
width: 300px;
align-items: center;
justify-content: center;
border: 1px solid black;
border-radius: 10px;
}
#count {
display: inline-block;
max-width: 30px;
border: none;
background-color: #Ffff00;
font-weight: 600;
}
#life-count {
height: 2rem;
margin-top: 10px
}
#text {
display: flex;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
/* Inputs/Buttons */
#input-container {
margin: 10px;
}
#guess-input {
border: 1px solid grey;
border-radius: 10px;
height: 25px;
}
.btn {
height: 2rem;
width: 5rem;
cursor: pointer;
color: #0a0a23;
background-color: #feac32;
background-image: linear-gradient(#fecc4c, #ffac33);
border: 3px solid #feac32;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
#submit-btn {
border-radius: 7px;
}
.btn:hover {
background-image: linear-gradient(#e0cb94, #ffac33);
}
.btn:active {
background-image: linear-gradient(#ede8da, #ffac33);
}
#restart-btn {
display: none;
width: 6rem;
border-radius: 7px;
}