-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
111 lines (98 loc) · 2.12 KB
/
style.css
File metadata and controls
111 lines (98 loc) · 2.12 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
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
.p {
text-align: center;
font-family: Georgia, 'Times New Roman', Times, serif;
color: rgb(117, 101, 101);
font-size: 1.6em;
}
.container {
display: block;
width: 600px;
height: 640px;
border: 2px solid #ccc;
border-radius: 40px;
display: inline-block;
background-color: rgb(248, 244, 244);
}
.img1 {
height: 40px;
}
body {
text-align: center;
background-color: rgba(64, 55, 55, 0.882);
}
.main {
background: linear-gradient(217deg, rgba(203, 129, 129, 0.8), rgba(255, 0, 0, 0) 70.71%), linear-gradient(127deg, rgba(172, 228, 172, 0.8), rgba(0, 255, 0, 0) 70.71%), linear-gradient(336deg, rgba(210, 49, 228, 0.8), rgba(0, 0, 255, 0) 70.71%);
height: 100%;
}
.box1 {
background-image: url(img/2048.png);
display: inline-block;
width: 200px;
height: 200px;
border: 2px solid #ccc;
border-radius: 5%;
margin: 10px;
background-color: #eee;
cursor: pointer;
margin-right: 60px;
margin-bottom: 70px;
transition: 0.8s;
}
.box2 {
display: inline-block;
background-image: url(img/smile.png);
width: 200px;
height: 200px;
border-radius: 10%;
margin: 10px;
cursor: pointer;
margin-left: 50px;
margin-bottom: 70px;
transition: 0.8s;
}
.box3 {
display: inline-block;
background-image: url(img/github.png);
width: 200px;
height: 200px;
border-radius: 50%;
margin: 10px;
background-color: #eee;
cursor: pointer;
margin-right: 60px;
transition: 0.8s;
}
.box4 {
display: inline-block;
background-image: url(img/Gobang.jpg);
width: 200px;
height: 200px;
border-radius: 20%;
margin: 10px;
background-color: #eee;
cursor: pointer;
margin-left: 50px;
transition: 0.8s;
}
.box1:hover {
transform: scale(1.1);
}
.box2:hover {
transform: scale(1.1);
}
.box3:hover {
transform: scale(1.1);
}
.box4:hover {
transform: scale(1.1);
}
.bottom {
text-align: center;
color: white;
font-size: 20px;
font-family: 'Times New Roman', Times, serif;
width: 100%;
z-index: 1000;
background: #504b4bb9;
height: 80px;
}