-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex1.css
114 lines (96 loc) · 1.89 KB
/
index1.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
@CHARSET "UTF-8";
header{
display:block;
margin:0 auto;
width:500px;
text-align:center;
}
header h1{
font-family:Arial, Helvetica, sans-serif;
font-size:50px;
font-weight:bold;
color:#33FFFF;
display:block;
transition:all 0.2s;
}
header h1:hover{
transform:scale(1.2) rotate(360deg);
}
header p{
font-family:Arial, Helvetica, sans-serif;
font-size:30px;
margin:20px auto;
}
p #score{
font-family:Arial, Helvetica, sans-serif;
font-size:30px;
}
header .newgamebutton{
width:100px;
padding:10px;
display:block;
margin:0 auto;
background:#ffee00 url(timg.png) no-repeat 30px;
background-size:15% 30%;background-position:0% 50% ;
font-family:Arial, Helvetica, sans-serif;
font-weight:bolder;
color:#2ecc71;
border-radius:10px;
text-decoration :none;
border:2px solid rgba(255,255,255,0.8);
transition:all 0.3s ease;
}
header .newgamebutton:hover{
background-color:#FF6666;
background-position:100% 50%;
border:2px solid rgba(255,255,255,1);
}
span .line-top{
background-color:#00FF33;
width:0px;
height:2px;
display:block;
position:absolute;
top:-2px;
left:-100%;
transition:all 0.2s ease;
}
span .newgamebutton:hover .line-top{
width:50px;
left:-2px;
}
body{
width:100%;
height:100%;
background-image:url(43b8f8890ecda746446adaaf35f8ceec.png);
background-position:center;
background-size:100% 100%;
}
#grid-container{
width:460px;
height:460px;
padding:20px;
margin:50px auto;
background:#bbada0;
border-radius:10px;
position:relative;
}
.grid-cell{
width:100px;
height:100px;
border-radius:6px;
background:#FFCC33;
position:absolute;
}
.number-cell{
width:100px;
height:100px;
border-radius:6px;
line-height:100px;
font:Arial, Helvetica, sans-serif;
font-size:55px;
font-weight:bold;
text-align: center;
position:absolute;
}
/* CSS Document */