-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle_contact.css
More file actions
150 lines (130 loc) · 2.62 KB
/
style_contact.css
File metadata and controls
150 lines (130 loc) · 2.62 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
@charset "utf-8";
body{
margin: 0;
padding: 0;
}
header{
padding: 5px 30px 0px;
background-color: #000;
}
.nav1{
background-color: rgba(0,0,0);
}
.navbar{
padding: 0px;
}
.navbar-nav li{
z-index: 1;
}
.navbar-nav li a{
font-size: 20px;
padding: 15px 60px!important;
}
.navbar-nav li a:hover{
border-right: 3px solid #ff4f81;
border-left: 3px solid #ff4f81;
transition: 0.5s all;
}
.navbar-light .navbar-nav .nav-link{
color: #000;
}
.lecture{
background-color: #000;
padding-bottom: 80px;
}
.lecture h1{
color: #fff;
letter-spacing: 12px;
text-transform: uppercase;
padding: 50px 0px 20px;
text-align: center;
}
.l-img{
width:100%;
position: relative;
display: block;
overflow: hidden;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-ms-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
opacity: 1;
filter: alpha(opacity=100);
padding-top: 25px;
padding-bottom: 4px;
}
.l-img img{
width: 100%;
}
.l-img:hover{
cursor: pointer;
}
.l-img:hover .l-caption{
transform: translateY(0%) scale(1);
-webkit-transform: translateY(0%) scale(1);
-ms-transform: translateY(0%) scale(1);
-o-transform: translateY(0%) scale(1);
-moz-transform: translateY(0%) scale(1);
}
.l-caption{
background-color: rgba(1,4,6,0.5);
position: absolute;
bottom: 0;
left: 0;
padding: 15px 20px;
right:0;
text-align: center;
z-index:99;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-ms-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
transform: translateY(150%) scale(1.5);
-webkit-transform: translateY(150%) scale(1.5);
-ms-transform: translateY(150%) scale(1.5);
-moz-transform: translateY(150%) scale(1.5);
-o-transform: translateY(150%) scale(1.5);
}
.l-caption ul{
display: inline-block;
margin: 0px;
padding: 0px;
}
.l-caption ul li{
display: inline-block;
}
.l-caption ul li a{
background-color: #fff;
border-radius: 50%;
color: #095880;
display: inline-block;
margin: 0px;
height: 28px;
text-align: center;
line-height: 30px;
width: 28px;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-ms-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
}
.l-caption ul li a{
transform: scale(1.2);
-webkit-transform: scale(1.2);
-ms-transform: scale(1.2);
-o-transform: scale(1.2);
-moz-transform: scale(1.2);
}
.l-info{
text-align: center;
border: 1px solid #000;
padding 5px 5px 0px 5px;
background-color: #ff4f81;
}
.l-info h3{
letter-spacing: 1.5px;
color: #fff;
}