-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.css
111 lines (107 loc) · 1.8 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
body{
background-color: rgb(240,244,245);
}
/* nav bar */
head{
display: inline;
}
header{
margin-top: 50px;
display: inline-grid;
grid-template-areas:
'hright hright hleft hleft'
'hright hright hleft hleft';
grid-template-columns: 10fr;
grid-gap: 400px;
}
.hright{
grid-area: hright;
margin-left: 100px ;
}
.hleft{
grid-area: hleft;
margin-top: 20px;
}
.hleft a{
display: inline-grid;
grid-template-columns: 1fr 1fr 1fr ;
grid-gap:3.5px;
text-decoration: none;
color: black;
font-size: larger;
font-weight: 600;
}
/* main section */
.aboutsec{
position: relative;
margin: auto;
top: -150px;
left: 470px
}
.aboutsec div{
justify-content: center;
text-align: center;
}
.aboutsec h1{
font-size: 35px;
font-weight: bolder;
color: rgb(37,188,127);
}
.aboutsec p{
font-size: larger;
font-weight: 500;
color: black;
}
/* main section cards */
.aboutnav{
display: inline-grid;
grid-template-areas:
'nav1 nav2 nav3'
'nav1 nav2 nav3';
grid-template-columns: 2fr 2fr 2fr;
grid-gap: 40px;
position: relative;
top: 250px;
left: -250px;
}
fieldset h2{
font-size: 35px;
font-weight: bolder;
color: rgb(37,188,127);
text-align: center;
}
fieldset span{
font-size: 35px;
font-weight: 600;
color: black;
}
.aboutnav1{
grid-area: nav1;
height: 100px;
width: 200px;
}
.aboutnav2{
grid-area: nav2;
height: 100px;
width: 200px;
}
.aboutnav3{
grid-area: nav3;
height: 100px;
width: 200px;
}
.aboutnav1 span{
position: relative;
top: -40px;
left: 40px;
}
.aboutnav2 span{
position: relative;
top: -40px;
left: 15px;
}
.aboutnav3 span{
position: relative;
top: -40px;
left: 25px;
}