-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
79 lines (70 loc) · 1.26 KB
/
style.css
File metadata and controls
79 lines (70 loc) · 1.26 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
*{
margin:0;
padding:0;
box-sizing: border-box;
}
header {
width:100%;
line-height:15vh;
background-color:#cd84f1;
}
h1 {
text-align:center;
color: white;
font-size:1.8rem;
letter-spacing: 3px;
text-transform: uppercase;
font-family: 'Carter One', cursive;
}
section {
height: 85vh;
display: flex;
justify-content: center;
align-items: center;
background-color: #deb5f3;
}
.gameArea{
width: 50%;
height: 400px;
padding: 20px 0;
background-color: #d390f4;
display: flex;
flex-direction:column;
justify-content: center;
align-items: center;
font-family: 'Source Sans Pro', sans-serif;
box-shadow: 0 8px 6px -6px black;
}
h3 {
text-align: center;
font-size:1.5rem;
}
input {
width:40%;
padding: 15px 0;
text-align: center;
border-radius: 25px;
outline: none;
border: none;
background-color: #eedff5;
color: black;
margin: 2rem 0;
font-size: 1.1rem;
}
button{
font-size: 1rem;
cursor: pointer;
outline: none;
border: #2f3542;
margin-top: 10px;
color: #ee4dee;
}
button.btn {
font-weight: 600;
padding:1rem 2rem;
background: white;
text-transform: uppercase;
}
.hidden{
display:none;
}