-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
86 lines (86 loc) · 6.74 KB
/
main.css
File metadata and controls
86 lines (86 loc) · 6.74 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
* {box-sizing:border-box; }
body {
height:100vh;
background:no-repeat center/cover url("https://raw.githubusercontent.com/ParkYoungWoong/overwatch-hero-selector-vanilla/master/images/bg.jpg");
background-attachment: fixed; /*스크롤이 되어도 배경이미지는 움직이지 않음*/
}
.container {
padding:50px 0;
background-repeat: no-repeat !important;
background-position:center !important;
background-size:90px !important;
}
.container .heroes {
display:flex;
justify-content:center;
flex-wrap:wrap;
max-width:700px;
margin:0 auto;
padding:40px 20px;
}
.container .heroes .hero {
width:80px;
height:80px;
margin:4px;
border:3px solid #fff;
background:#555;
overflow: hidden;
transform:skewX(-14deg);
border-radius:10px;
transition:transform 0.2s,
background-color 0.6s;
}
.container .heroes .hero:hover {
background-color:#ff9c00;
transform:scale(1.3) skewX(-14deg);
z-index:1;
}
.container .heroes .hero .image {
width:140%;
height:100%;
background-repeat: no-repeat !important;
background-position:center !important;
background-size:90px !important;
transform:skewX(14deg) translateX(-16px);
}
/* 1~32까지 반복 */
.container .heroes .hero:nth-child(1) .image {background: url("https://raw.githubusercontent.com/ParkYoungWoong/overwatch-hero-selector-vanilla/master/images/hero1.png") ;}
.container .heroes .hero:nth-child(2) .image {background: url("https://raw.githubusercontent.com/ParkYoungWoong/overwatch-hero-selector-vanilla/master/images/hero2.png") ;}
.container .heroes .hero:nth-child(3) .image {background: url("https://raw.githubusercontent.com/ParkYoungWoong/overwatch-hero-selector-vanilla/master/images/hero3.png") ;}
.container .heroes .hero:nth-child(4) .image {background: url("https://raw.githubusercontent.com/ParkYoungWoong/overwatch-hero-selector-vanilla/master/images/hero4.png") ;}
.container .heroes .hero:nth-child(5) .image {background: url("https://raw.githubusercontent.com/ParkYoungWoong/overwatch-hero-selector-vanilla/master/images/hero5.png") ;}
.container .heroes .hero:nth-child(6) .image {background: url("https://raw.githubusercontent.com/ParkYoungWoong/overwatch-hero-selector-vanilla/master/images/hero6.png") ;}
.container .heroes .hero:nth-child(7) .image {background: url("https://raw.githubusercontent.com/ParkYoungWoong/overwatch-hero-selector-vanilla/master/images/hero7.png") ;}
.container .heroes .hero:nth-child(8) .image {background: url("https://raw.githubusercontent.com/ParkYoungWoong/overwatch-hero-selector-vanilla/master/images/hero8.png") ;}
.container .heroes .hero:nth-child(9) .image {background: url("https://raw.githubusercontent.com/ParkYoungWoong/overwatch-hero-selector-vanilla/master/images/hero9.png") ;}
.container .heroes .hero:nth-child(10) .image {background: url("https://raw.githubusercontent.com/ParkYoungWoong/overwatch-hero-selector-vanilla/master/images/hero10.png") ;}
.container .heroes .hero:nth-child(11) .image {background: url("https://raw.githubusercontent.com/ParkYoungWoong/overwatch-hero-selector-vanilla/master/images/hero11.png") ;}
.container .heroes .hero:nth-child(12) .image {background: url("https://raw.githubusercontent.com/ParkYoungWoong/overwatch-hero-selector-vanilla/master/images/hero12.png") ;}
.container .heroes .hero:nth-child(13) .image {background: url("https://raw.githubusercontent.com/ParkYoungWoong/overwatch-hero-selector-vanilla/master/images/hero13.png") ;}
.container .heroes .hero:nth-child(14) .image {background: url("https://raw.githubusercontent.com/ParkYoungWoong/overwatch-hero-selector-vanilla/master/images/hero14.png") ;}
.container .heroes .hero:nth-child(15) .image {background: url("https://raw.githubusercontent.com/ParkYoungWoong/overwatch-hero-selector-vanilla/master/images/hero15.png") ;}
.container .heroes .hero:nth-child(16) .image {background: url("https://raw.githubusercontent.com/ParkYoungWoong/overwatch-hero-selector-vanilla/master/images/hero16.png") ;}
.container .heroes .hero:nth-child(17) .image {background: url("https://raw.githubusercontent.com/ParkYoungWoong/overwatch-hero-selector-vanilla/master/images/hero17.png") ;}
.container .heroes .hero:nth-child(18) .image {background: url("https://raw.githubusercontent.com/ParkYoungWoong/overwatch-hero-selector-vanilla/master/images/hero18.png") ;}
.container .heroes .hero:nth-child(19) .image {background: url("https://raw.githubusercontent.com/ParkYoungWoong/overwatch-hero-selector-vanilla/master/images/hero19.png") ;}
.container .heroes .hero:nth-child(20) .image {background: url("https://raw.githubusercontent.com/ParkYoungWoong/overwatch-hero-selector-vanilla/master/images/hero20.png") ;}
.container .heroes .hero:nth-child(21) .image {background: url("https://raw.githubusercontent.com/ParkYoungWoong/overwatch-hero-selector-vanilla/master/images/hero21.png") ;}
.container .heroes .hero:nth-child(22) .image {background: url("https://raw.githubusercontent.com/ParkYoungWoong/overwatch-hero-selector-vanilla/master/images/hero22.png") ;}
.container .heroes .hero:nth-child(23) .image {background: url("https://raw.githubusercontent.com/ParkYoungWoong/overwatch-hero-selector-vanilla/master/images/hero23.png") ;}
.container .heroes .hero:nth-child(24) .image {background: url("https://raw.githubusercontent.com/ParkYoungWoong/overwatch-hero-selector-vanilla/master/images/hero24.png") ;}
.container .heroes .hero:nth-child(25) .image {background: url("https://raw.githubusercontent.com/ParkYoungWoong/overwatch-hero-selector-vanilla/master/images/hero25.png") ;}
.container .heroes .hero:nth-child(26) .image {background: url("https://raw.githubusercontent.com/ParkYoungWoong/overwatch-hero-selector-vanilla/master/images/hero26.png") ;}
.container .heroes .hero:nth-child(27) .image {background: url("https://raw.githubusercontent.com/ParkYoungWoong/overwatch-hero-selector-vanilla/master/images/hero27.png") ;}
.container .heroes .hero:nth-child(28) .image {background: url("https://raw.githubusercontent.com/ParkYoungWoong/overwatch-hero-selector-vanilla/master/images/hero28.png") ;}
.container .heroes .hero:nth-child(29) .image {background: url("https://raw.githubusercontent.com/ParkYoungWoong/overwatch-hero-selector-vanilla/master/images/hero29.png") ;}
.container .heroes .hero:nth-child(30) .image {background: url("https://raw.githubusercontent.com/ParkYoungWoong/overwatch-hero-selector-vanilla/master/images/hero30.png") ;}
.container .heroes .hero:nth-child(31) .image {background: url("https://raw.githubusercontent.com/ParkYoungWoong/overwatch-hero-selector-vanilla/master/images/hero31.png") ;}
.container .heroes .hero:nth-child(32) .image {background: url("https://raw.githubusercontent.com/ParkYoungWoong/overwatch-hero-selector-vanilla/master/images/hero32.png") ;}
.container .logo {
max-width:300px;
margin:0 auto;
padding: 0 20px;
}
.container .logo img {
width:100%;
}