-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinterview.css
More file actions
114 lines (111 loc) · 2.17 KB
/
interview.css
File metadata and controls
114 lines (111 loc) · 2.17 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
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
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
body{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins',sans-serif;
padding: 50px;
text-align: center;
}
.container{
height: 250px;
width: 250px;
overflow: hidden;
margin: 0 auto;
border-radius: 50%;
transition: all 0.3s ease-in-out;
box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.3);
background: linear-gradient(45deg, #7b00e0, #ae31d9);
}
.container:hover{
height: 470px;
width: 350px;
border-radius: 5px;
box-shadow: 0px 1px 35px 0px rgba(0,0,0,0.3);
}
.container .wrapper img{
position: relative;
z-index: 20;
border-radius: 50%;
display: block;
height: 200px;
width: 200px;
border: 5px solid #fff;
object-fit: cover;
margin: 20px auto;
transition: all 0.3s ease;
}
.container:hover .wrapper img.active{
height: 470px;
width: 350px;
margin: 0px auto;
border: none;
border-radius: 5px;
}
.wrapper .title{
color: #fff;
font-size: 30px;
font-weight: 500;
padding: 10px;
line-height: 25px;
}
.wrapper .place{
color: #fff;
font-size: 17px;
line-height: 0px;
margin: 10px 0;
}
.content{
color: #fff;
font-size: 17px;
margin-top: 10px;
padding: 1px 20px 10px 20px!important;
}
.wrapper .stars{
margin-top: 30px;
}
.stars label{
font-size: 30px;
margin: 0 3px;
color:yellow;
}
.container .icons{
position: relative;
margin-top: -435px;
margin-left: 10px;
list-style: none;
}
.container .icons.active{
display: none;
}
.container .icons li{
height: 40px;
width: 40px;
margin: 5px 0;
opacity: 0;
margin-left: -100px;
transition: all 0.5s ease;
}
.container:hover .icons li{
opacity: 1;
margin-left: 7px;
}
.container:hover .icons li:nth-child(2){
transition-delay: 0.2s;
}
.container:hover .icons li:nth-child(3){
transition-delay: 0.4s;
}
.container .icons li a{
color: #7b00e0;
height: 100%;
width: 100%;
border-radius: 50%;
background: #fff;
display: block;
line-height: 40px;
transition: all 0.3s;
}
.container .icons li a:hover{
transform: scale(0.9);
}