-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (46 loc) · 862 Bytes
/
style.css
File metadata and controls
52 lines (46 loc) · 862 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
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap');
*, *::before, *::after{
box-sizing: border-box;
margin: 0;
}
/* ====== GENERAL TAGS ====== */
body{
font-family: 'Source Sans Pro', sans-serif;
}
p{
text-align: justify;
}
/* ====== LOGO STYLING ====== */
.logo-img{
text-align: center;
}
.logo-img img{
width: 250px;
height: auto;
}
/* ======= MENU BAR ======== */
#menu-bar{
text-align: center;
background-color: cadetblue;
}
#menu-bar li{
display: inline-block;
padding: 15px 10px;
color: white;
font-size: 18px;
font-weight: bold;
}
/* ======= CONTENT CONTAINER ====== */
#container{
text-align: center;
padding: 50px 80px;
}
#about-img{
width: 100%;
}
/* ====== STICKY CLASS ====== */
.sticky{
position: fixed;
top: 0px;
width:100%;
}