-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.css
115 lines (100 loc) · 1.87 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
112
113
114
115
/* CSS Reset */
* {
margin: 0px;
padding: 0px;
}
html {
scroll-behavior: smooth;
}
/* Navigation Bar */
#navbar {
position: sticky;
display: flex;
align-items: center;
top: 0px;
padding: 2px 0px;
}
/* Navigation Bar: Logo and Image */
#logo {
margin: 10px 0px 10px 20px;
}
#logo img {
margin: 3px 3px;
height: 59px;
}
#navbar p {
font-size: 27px;
padding: 0px 8px 0px 0px;
margin: 0px;
color: white;
}
/* Navigation Bar: List Styling */
#navbar ul {
display: flex;
font-family: 'Merriweather', serif;
}
#navbar::before {
content: "";
background-color: black;
position: absolute;
height: 100%;
/* height: 10px 54px; */
width: 100%;
z-index: -1;
opacity: 0.4;
}
#navbar ul li {
list-style: none;
font-size: 1.4rem;
}
#navbar ul li a {
color: white;
display: block;
padding: 3px 22px;
border-radius: 20px;
text-decoration: none;
transition-duration: 0.3s;
}
#navbar ul li a:hover {
color: black;
background-color: white;
text-decoration: underline;
}
#navbar .active{
text-decoration: underline;
color: lightgrey;
}
.image::before {
content: "";
position: absolute;
background: url('About.jpg') no-repeat center center/cover;
height: 450px;
width: 100%;
top: 0px;
left: 0px;
z-index: -1;
opacity: 0.89;
}
.para{
padding: 380px 100px;
display: flex;
padding-bottom: inherit;
}
.para h2{
font-size: 34px;
padding: 20px;
margin: 8px;
text-decoration: underline green;
}
.para1{
font-size: 26px;
padding-left: 20px;
}
.para2{
display: flex;
justify-content: center;
align-items: center;
font-size: 26px;
padding-left: 273px;
margin-top: 20px;
}