-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
109 lines (96 loc) · 2.22 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
.grid{
width: 512px;
height: 412px;
display: flex;
align-items: center;
flex-wrap: wrap;
margin: 0 auto;
padding-top: 120px;
padding-left: 50px;
padding-bottom: 100px;
gap: 1rem
}
.square{
height: 100px;
width: 100px;
border: solid black 5px;
border-radius: 40px;
}
.mole{
background-image: url('attacker.png');
background-size: cover;
}
.scoreText{
padding-top: 50px;
display: inline;
}
.TL{
display: inline;
text-align:center;
font-size: 50px;
font-family: "Candara","Lucida Console", "Courier New", monospace;
}
.timeNum{
display: inline;
padding-bottom: 50px;
font-size: 50px;
font-family: "Candara","Lucida Console", "Courier New", monospace;
color: red;
}
.YS{
display: inline;
font-size: 50px;
font-family: "Candara","Lucida Console", "Courier New", monospace;
}
.score{
display: inline;
font-size: 50px;
font-family: "Candara","Lucida Console", "Courier New", monospace;
}
.allScoreText{
text-align: center;
margin: auto;
background-color: white;
border-radius: 40px;
width: 400px;
box-shadow: 0 7px 7px 0 rgba(0, 0, 0, 0.6);
}
.allTimeText{
text-align: center;
margin: auto;
background-color: white;
border-radius: 40px;
width: 400px;
box-shadow: 0 7px 7px 0 rgba(0, 0, 0, 0.6);
}
html {
background: url(desert.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.modal::backdrop{
background: linear-gradient(45deg, red, blue);
opacity: .3;
}
.modal{
border: 0;
box-shadow: 0 7px 7px 0 rgba(0, 0, 0, 0.6);
margin-top: 230px;
font-size: 50px;
background-color: azure;
font-family: "Candara","Lucida Console", "Courier New", monospace;
}
.header {
position: fixed;
left: 0;
top: 0;
width: 100%;
background-color: coral;
color: white;
text-align: center;
font-size: 30px;
font-family: "Candara","Lucida Console", "Courier New", monospace;
box-shadow: 0 2px 2px 0 black;
}