-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.css
More file actions
69 lines (66 loc) · 1.21 KB
/
css.css
File metadata and controls
69 lines (66 loc) · 1.21 KB
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
body {
background-color: #FFFFFF;
font-family: 'Garamond', serif;
}
.header {
text-align: center;
padding: 10px ;
margin: 10px;
z-index: 99;
position: sticky;
top: 0;
}
.image-container {
width: 100%;
height: 150px;
background: url('https://github.com/CarterBeauBenson/STIDS/blob/main/image/header.png?raw=true') no-repeat center center;
background-size: contain; /* Updated this line */
position: relative;
z-index: 1;
}
.organizer img {
width: 200px;
height: 200px;
border-radius: 50%;
display: block;
margin-left: auto;
margin-right: auto;
}
.main-content {
position: relative;
z-index: 2;
background-color: #FFFFFF;
}
.navbar {
text-align: center;
background-color: #008000;
}
.navbar a {
margin: 0 15px;
padding: 20px;
text-decoration: none;
color: #F8F8FF;
font-size: 24px;
}
p, ul {
font-size: 18px;
padding: 0 165px;
}
li {
padding: 0px ;
}
h1, h2 {
text-align: center;
}
h3 {
font-size: 18px;
padding: 0 150px;
}
ul {
list-style-type: square;
list-style-position: inside ;
}
/* Smooth scrolling */
html {
scroll-behavior: smooth;
}