-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss-spirite.html
77 lines (75 loc) · 1.36 KB
/
css-spirite.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<style type="text/css">
body {
background-color: hsl(0, 0%, 90%);
}
img {
display: inline;
}
div {
margin: 30px;
}
span {
background-image: url(./css_spirite.jpg);
background-repeat:no-repeat;
display: inline-block;
border: dotted;
}
span.sgoogle {
width: 230px;
height: 80px;
xmargin: auto;
background-position: 11px -79px;
xvisibility: hidden;
}
span.sgoogle:active {
visibility: hidden;
}
span.bgoogle {
width: 290px;
height: 80px;
background-position: -20px 0px;
}
span.previous {
width: 20px;
height: 45px;
background-position: 2px -5px;
}
span.next {
width: 20px;
height: 45px;
background-position: -315px -5px;
}
span.icon {
width: 30px;
height: 30px;
background-position: -211px -195px;
}
span.wgoogle {
width: 290px;
height: 80px;
background-position: -20px -223px;
}
</style>
</head>
<body>
<main>
<ximg src="css_spirite.jpg">
<div>
<span class=sgoogle></span>
<span class=bgoogle></span>
<span class="previous"></span>
<span class="next"></span>
<span class="icon"></span>
<span class="wgoogle"></span>
<span class="w-star"></span>
<span class="y-star"></span>
</div>
</main>
</body>
</html>