-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
114 lines (97 loc) · 1.83 KB
/
style.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
header{
width: 100%;
height: 100vh;
position: relative;
color: #fff;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 0 200px;
background-color: rgba(0,0,0,0.5);
background-blend-mode: overlay;
}
.video{
max-width: 1200px;
margin: 0 auto;
padding-left: 15px;
padding-right: 15px;
}
.menu-par{
padding: 30px 0px;
}
.header-info-par a{
background-color: #fff;
color: #00a8b4;
padding: 17px 45px;
display: inline-block;
margin-top: 25px;
position: relative;
overflow: hidden;
}
.header-info-par a:after{
content: "Read More";
position: absolute;
top: 0;
left: 0;
right: 0;
background-color: #00a8b4;
color: #fff;
width: 0%;
height: 100%;
line-height: 50px;
transition: all 0.5s ease;
}
.header-info-par a:hover:after{
width: 100%;
}
.header-info-par h1{
font-size: 45px;
text-transform: uppercase;
padding: 20px 0px;
letter-spacing: 4px;
}
.header-info-par p{
line-height: 30px;
font-size: 15px;
width: 80%;
margin: auto;
}
.header-info-par a{
background-color: #fff;
color: #00a8b4;
padding: 17px 45px;
display: inline-block;
margin-top: 25px;
position: relative;
overflow: hidden;
}
.header-info-par a:after{
content: "Read More";
position: absolute;
top: 0;
left: 0;
right: 0;
background-color: #00a8b4;
color: #fff;
width: 0%;
height: 100%;
line-height: 50px;
transition: all 0.5s ease;
}
.header-info-par a:hover:after{
width: 100%;
}
.header-info-par h1{
font-size: 45px;
text-transform: uppercase;
padding: 20px 0px;
letter-spacing: 4px;
}
.header-info-par p{
line-height: 30px;
font-size: 15px;
width: 80%;
margin: auto;
}
/* css */