-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
116 lines (104 loc) · 1.83 KB
/
style.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
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
105
106
107
108
109
110
111
112
113
114
115
116
html,
body {
margin: 0;
padding: 0;
color: #776e65;
font-family: "Clear Sans", "Helvetica Neue", Arial, sans-serif;
background-color: #7b3f00;
}
.heading {
position: fixed;
bottom: 400px;
right: 300px;
width: 300px;
color: #ffe4c4;
font-size: 30px;
}
.grid-container {
display: grid;
grid-template-columns: 120px 120px 120px 120px;
grid-template-rows: 120px 120px 120px 120px;
position: absolute;
left: -30px;
right: 60px;
top: -20px;
bottom: 30px;
/* background-color: #bbada0; */
padding: 50px;
grid-gap: 10px;
height: 500px;
align-content: space-evenly;
}
.heading {
}
.grid-item {
text-align: center;
background-color: rgba(255, 255, 255, 0.8);
font-weight: bold;
padding: 20px 0;
font-size: 3.5em;
border-radius: 3%;
box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#reset {
position: fixed;
border: none;
bottom: 325px;
right: 500px;
font-size: 15px;
background-color: #ffe4c4;
/* opacity: 0.6;
transition: 0.3s; */
display: inline-block;
text-decoration: none;
cursor: pointer;
}
/* #reset:hover {
opacity: 1;
} */
#score {
padding: 0px;
padding-right: 30px;
bottom: 260px;
right: 475px;
position: absolute;
font-size: 25px;
color: #ffe4c4;
border-bottom-right-radius: 5px;
float: right;
}
#foot {
color: white;
position: relative;
bottom: -110px;
text-align: center;
color: #ffe4c4;
}
#choc_png {
position: absolute;
top: 30px;
width: 50%;
height: auto;
z-index: 1;
}
.square {
border-radius: 25px;
background: #965a3e;
padding: 5px;
width: 540px;
height: 540px;
position: relative;
left: 120px;
top: 120px;
z-index: 4;
}
#end {
color: white;
z-index: 6;
text-align: center;
display: block;
margin-left: auto;
margin-right: auto;
width: auto;
height: 60%;
}