-
Notifications
You must be signed in to change notification settings - Fork 0
/
hobbies.css
138 lines (108 loc) · 2.27 KB
/
hobbies.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{
display:flex;
margin:0;
padding:0;
min-height: 100vh;
background: #444;
justify-content: center;
align-items: center;
font-family: arial;
} */
img{
width:100%;
}
.container{
background-color: black;
width: 100%;
position: relative;
display: flex;
flex-wrap:wrap;
flex-direction: column;
align-content: center;
}
.container .card{
position: relative;
}
.container .card .face{
width:300px;
height: 200px;
transition:.4s;
}
.container .card .face.face1{
position: relative;
/* background-image: url(./dance.png); */
background: linear-gradient(black,white);
display: flex;
justify-content: center;
align-content:center;
align-items: center;
z-index: 1;
transform: translateY(100px);
}
.container .card:hover .face.face1{
transform: translateY(0);
box-shadow:
inset 0 0 60px whitesmoke,
inset 20px 0 80px #f0f,
inset -20px 0 80px #0ff,
inset 20px 0 300px #f0f,
inset -20px 0 300px #0ff,
0 0 50px #fff,
-10px 0 80px #f0f,
10px 0 80px #0ff;
}
.container .card .face.face1 .content{
opacity: .2;
transition: 0.5s;
text-align: center;
}
.container .card:hover .face.face1 .content{
opacity: 1;
}
.container .card .face.face1 .content i{
font-size: 3em;
color: white;
display: inline-block;
}
.container .card .face.face1 .content h3{
font-size: 1em;
color: rgb(14, 14, 14);
text-align: center;
}
.container .card .face.face1 .content a{
transition: .5s;
}
.container .card .face.face2{
position: relative;
background: whitesmoke;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
box-sizing: border-box;
box-shadow: 0 20px 50px rgba(0,0,0,.8);
transform: translateY(-100px);
}
.container .card:hover .face.face2{
transform: translateY(0);
}
/* .container .card .face.face2 .content p, a{
font-size: 10pt;
margin: 0 ;
padding: 0;
color:#333;
}
.container .card .face.face2 .content a{
text-decoration:none;
color: black;
box-sizing: border-box;
outline : 1px dashed #333;
padding: 10px;
margin: 15px 0 0;
display: inline-block;
}
.container .card .face.face2 .content a:hover{
background: #333 ;
color: whitesmoke;
box-shadow: inset 0px 0px 10px rgba(0,0,0,0.5);
} */