-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.css
48 lines (48 loc) · 1004 Bytes
/
about.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
*{
margin:0;
padding:0;
}
body{
font-family: 'DM Sans', sans-serif;
background: url(aboutbg.jpg);
background-size: cover;
height:100vh;
}
.header h1{
position:absolute;
left:60%;
top:8%;
text-decoration: underline;
color:rgb(9, 7, 10);
}
.header h3{
position: absolute;
left:45%;
top:20%;
text-align: center;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
margin-right:10px;
line-height: 30px;
color:brown
}
.header h4{
position: absolute;
left:62%;
top:42%;
text-align: center;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
margin-right:10px;
color:black;
}
.header button{
border-radius: 50px;
position: absolute;
top:47%;
height:45px;
width:110px;
left:64%;
background-color: palevioletred;
}
.header button:hover{
background-color:rgb(216, 146, 170);
}