-
Notifications
You must be signed in to change notification settings - Fork 0
/
mainStle.css
77 lines (68 loc) · 1.36 KB
/
mainStle.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
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
*{
box-sizing: border-box;
/* background-color: forestgreen; */
color: white;
font-family: sans-serif;
margin: 0;
padding: 0;
}
body{
background-image: url("https://steamuserimages-a.akamaihd.net/ugc/915787086994011927/5C57745B654D7F20DDE1FE0BFF542AE723079DDF/");
background-position: center;
/* background-color: #cccccc; */
background-size: auto
}
header{
/* display: box; */
justify-content: center;
align-items: center;
padding-left: 20px;
}
#game-grid{
display: grid;
justify-items: center;
justify-content: center;
grid-gap: 15px;
grid-template-columns: repeat(2, 201px);
}
.game-box{
background-color: white;
/* color: blueviolet; */
height: 200px;
width: 200px;
border-radius: 20px;
}
#resultBox{
/* background-color: aquamarine; */
height: 60px;
/*width: 250px;*/
display: flex;
flex-direction: row ;
justify-content: center;
align-items: center;
/*margin: 0 0 50px 0;*/
}
button{
background-color: white;
color: #003a24;
padding: 0;
border: none;
/*background: none;*/
width:100px;
height: 30px;
}
button:hover{
border: 3px solid #003a24;
cursor: pointer;
}
#b{
display: flex;
justify-content: center;
}
h3{
font-size: xx-large;
}
h1{
padding-top: 10px;
padding-bottom: 20px;
}