forked from iamakash-06/UID-Project-Final
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout_style.css
More file actions
59 lines (51 loc) · 1019 Bytes
/
about_style.css
File metadata and controls
59 lines (51 loc) · 1019 Bytes
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
@import url('https://fonts.googleapis.com/css2?family=Arvo&display=swap');
.about{
width: 100%;
height: 100vh;
overflow: hidden;
color: snow;
}
.about video{
object-fit: cover;
width: 100%;
height: 100%;
}
.about .abcontent{
position: relative;
z-index: 1;
width: 97%;
margin-top: -47%;
margin-bottom: 10%;
}
.about .abcontent p{
margin: 3% 10% 0 10%;
background-color: rgba(0, 0, 0, 0.514);
padding: 3% 5% 5%;
font-size: 1.7em;
line-height: 1.7;
font-weight: 500;
border-radius: 10%;
color: whitesmoke;
margin-bottom: 10%;
}
#about{
font-family: 'Arvo', serif;
text-align: center;
font-size: 3em;
}
.moretime{
display: inline;
background-color: orange;
color: black;
padding: 8px 10px;
margin: 0px 0;
border: none;
border-radius: 30px;
transition: background 0.5s;
font-size: 20px;
cursor: pointer;
}
.moretime:hover{
background-color: black;
color: white;
}