-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
104 lines (90 loc) · 1.61 KB
/
styles.css
File metadata and controls
104 lines (90 loc) · 1.61 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
* {
margin:0;
padding:0;
font-family: "Roboto", sans-serif;
color: rgba(144, 76, 228);
}
html {
display:flex;
}
body {
min-height: 100vh;
flex:1;
display:flex;
flex-direction:column;
background-color: #121212;
}
main {
flex:1;
display:flex;
flex-direction:column;
background-color: rgb(144, 76, 228, 0.05);
margin: 5vh 15vw 10vh;
border-radius: 5%;
box-shadow: rgba(144, 76, 228, 0.4) 0 0 3rem 1rem;
}
header {
display:flex;
justify-content: space-evenly;
min-height: 8vh;
border-radius: 1em;
}
#pageHeading {
text-align: center;
padding: 2%;
color:rgb(133, 131, 30);
font-size: 2.5rem;
}
#gameContainer {
display: flex;
flex-direction: column;
align-items: center;
flex: 1;
gap: 1rem;
}
.gridContainer {
width: 50vw;
height:50vh;
flex:1;
display:flex;
flex-direction:column;
}
.gridRow, .gridSquare {
flex: 1;
display:flex;
background-color: white;
}
.userInputContainer {
display:flex;
flex-direction:column;
gap: 0.5em;
align-items: center;
}
.buttons {
display:flex;
gap: 0.5rem;
font-size: 1.3rem;
}
button {
flex: 1;
font-size: inherit;
padding: 0.3rem 0.5rem;
border-radius: 0.7rem;
}
input {
font-size: 1.1rem;
border-radius: 1rem;
box-shadow: rgba(144, 76, 228, 0.4) 0 0 0.5rem 0.1rem;
}
footer {
display:flex;
justify-content: space-evenly;
border-radius: 5%;
margin-top:auto;
background-color: rgb(144, 76, 228, 0.05);
flex: 0;
font-style: italic;
}
footer div {
flex: 1 0;
}