-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.css
More file actions
61 lines (57 loc) · 887 Bytes
/
about.css
File metadata and controls
61 lines (57 loc) · 887 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
60
61
body{
background-color: rgb(248, 220, 168);
overflow-x: hidden;
}
.header{
width: 100%;
background-color: #255f3d;
position: absolute;
top: 0px;
left: 0px;
padding: 55px;
}
.heading{
position: relative;
text-align: center;
top: 0px;
font-size: 40px;
color: white;
}
img{
position: absolute;
top: 0px;
left: 0px;
}
.para{
position: relative;
top: 12px;
text-align: center;
font-size: 25px;
margin: 10%;
font-weight: 500;
}
@media screen and (max-width: 762px){
.heading{
left: 290px;
}
}
@media screen and (max-width: 499px){
img{
width: 200px;
height: 100px;
}
.heading{
font-size: 30px;
left: 220px;
}
.heading{
top: 100px;
left: 10px;
color: rgb(13, 99, 59);
}
.para{
font-size: 20px;
margin: 5%;
top: 90px;
}
}