-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.css
88 lines (81 loc) · 1.33 KB
/
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
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
@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');
/*body{
background-color: antiquewhite;
}*/
*{
margin: 0;
padding: 0;
}
nav{
font-family: 'Ubuntu', sans-serif;
}
nav ul{
display: flex;
align-items: center;
list-style-type: none;
height: 65px;
background-color: black;
color: white;
}
nav ul li{
padding: 0 12px;
}
nav ul li:hover{
color:rgb(251, 226, 195);
cursor: pointer;
}
.brand img{
width: 44px;
padding: 0 8px;
}
.brand {
display: flex;
align-items: center;
font-weight: bolder;
font-size: 1.3rem;
}
.main{
display: flex;
margin: 95px 45px 0px 82px;
}
.left{
width:60%;
}
.left h1{
font-size:35px;
}
.right{
width: 40%;
margin-top:50px ;
}
.main p,ul li{
font-size: 18px;
line-height: 25px;
}
.subright{
display: flex;
}
.right_one{
width: 50%;
}
.right_two{
width: 50%;
}
.space{
margin-top: 45px;
}
.line{
height:200px;
width: 100%;
}
.foot{
height:400px;
width: 100%;
background-color: black;
color: #fff;
display: flex;
justify-content:center;
align-items: center;
font-size: larger;
}