-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
50 lines (47 loc) · 950 Bytes
/
index.css
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
body{
margin:0;
background-color: #797979;
font-family: "Roboto";
}
.gamearea{
display:grid;
grid-template-rows: auto auto;
background-color: #f3f3f3;
margin-top:5em;
margin-left:16em;
width:600;
height:400;
align-items: center;
justify-content: center;
}
.head{
font-family: "Alegreya";
font-size:3em;
text-align: center;
}
.buttons{
display:grid;
grid-template-columns: auto auto;
font-family: "Roboto";
grid-column-gap: 3em;
}
.button1{
background-color: white;
color: black;
border: 2px solid #999999;
padding: 16px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
transition-duration: 0.4s;
cursor: pointer;
}
.button1 hover{
background-color: #b2b2b2;
}
a{
text-decoration: none;
color:black
}