-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
100 lines (83 loc) · 1.66 KB
/
styles.css
File metadata and controls
100 lines (83 loc) · 1.66 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
:root {
--bg-col: rgb(188, 200, 238);
--box-col: rgb(238, 226, 188);
}
body, .word-output {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
body {
width: 100vw;
height: 100vh;
background: linear-gradient(var(--bg-col) 0%, white 100%);
}
.title h1, .title p {
text-align: center;
}
.title h1 {
font-family: 'Rubik Mono One', sans-serif;
font-size: 5em;
}
.title p {
font-family: 'Rubik', sans-serif;
font-size: 2em;
}
.word-output {
display: flex;
background-color: var(--box-col);
height: 20vh;
border: medium solid black;
}
.word-output h3 {
font-family: 'Poppins', sans-serif;
font-size: 3em;
}
.input-container {
display: flex;
justify-content: space-between;
margin-top: 1vh;
height: 10vh;
}
.game_button {
width: 40%;
height: 100%;
font-family: 'Kanit', sans-serif;
font-size: 2em;
background-color: rgb(188, 188, 238);
}
.game_button:hover {
background-color: rgb(226, 188, 238);
cursor: pointer;
}
#bottom {
display: flex;
justify-content: center;
}
.message-container, .score-container, .lives-container {
margin-top: 2vh;
display: flex;
}
.message-container {
height: 10vh;
width: 40%;
justify-content: center;
}
.lives-container {
height: 10vh;
width: 30%;
justify-content: right;
}
.score-container {
height: 10vh;
width: 30%;
justify-content: left;
}
span {
font-size: 2.5em;
font-family: 'Work Sans', sans-serif
}
span + span {
margin-left: 15px;
}