-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathastyle.css
138 lines (89 loc) · 1.48 KB
/
astyle.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
body{
margin: 0;
padding: 0;
font-family: vardana;
background: #262626;
}
.center{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
}
.imgbox{
position: relative;
width: 500px;
height: 350px;
background-size: cover;
padding: 20px;
border: 2px solid #fff;
overflow:hidden;
}
.imgbox img{
width: 100%;
transition: .5;
}
.container{
position: absolute;
top:0;
left:0;
width: 100%;
height: 100%;
background:transparent;
transition: .5s;
}
.container:before{
content:'';
position: absolute;
top:0;
left:0;
width: 100%;
height: 100%;
tranform: translateX(-100%) scale(1) skew(-45deg);
transition: .5s;
opacity:1;
color:#000;
}
.content
{
position: absolute;
top:50px;
transform: translateY(50%);
padding: 30px 50px;
text-align: center;
}
.content h1
{
padding: 0;
color: #fff;
font-size: 1.5em;
transform: translateY(-100%) scale(0);
padding: 0px;
margin-bottom:20px;
}
.content p
{
padding: 0;
color: #fff;
font-size: 1em;
transform: scale(2);
padding: 0px;
transition: .5s;
opacity: 0;
}
.imgbox:hover .content h1{
transform: translateY(0) scale(1);
}
.imgbox:hover .content p{
transform: scale(1);
opacity: 1;
}
.imgbox:hover img{
transform: scale(2) translateX(-50px);
}
.imgBox:hover .container:before
{
opacity: 1;
background: rgba(255,255,255,.5);
tranform: translateX(0) scale(1) skew(-45deg);
}