-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
65 lines (57 loc) · 1.11 KB
/
Copy pathstyle.css
File metadata and controls
65 lines (57 loc) · 1.11 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
.game{
width: 250px;
margin: auto;
text-align: center;
font-weight: 500;
}
body{
background-image:url(img.jpg);
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 100% 100%;
}
#tit1{
color: green;
background-color: black;
font-family: Arial Black;
}
#tit2{
color: red;
background-color: black;
font-family: Lucida Handwriting;
font-weight: bold;
font-size: 20px;
}
.title{
color: yellowgreen;
text-align: center;
background-color: rgba(0, 0, 0, 0.124);
margin-bottom: 12px;
border-radius: 25px;
}
.square{
width: 80px;
height: 80px;
background: blue;
float: left;
margin: 1.5px;
font-size: 50px;
border-radius: 15px;
}
.square:hover{
background: rgb(7, 56, 121);
}
button{
cursor: pointer;
font-size: 25px;
background: rgb(135, 135, 228);
border: none;
position: relative;
bottom: 5px;
color: aquamarine;
}
@media only screen and (max-width: 600px) {
.game{
width: 250px;
}
}