forked from GreeleyRobotics/Old-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
118 lines (101 loc) · 2.63 KB
/
styles.css
File metadata and controls
118 lines (101 loc) · 2.63 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
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
116
117
118
/* Reset some default styles */
body, h1, h2, p, ul, li {
margin: 0;
padding: 0;
}
/* Set a background color and font styles */
body {
background-color: #f0f0f0;
font-family: Arial, sans-serif;
}
/* Style the header navigation */
header {
background-color: #1a206b;
color: #fff;
padding: 20px 0;
}
nav ul {
list-style-type: none;
text-align: center;
}
nav li {
display: inline;
margin-right: 2%; /* Adjust for spacing between items */
}
nav a {
text-decoration: none;
color: #fff;
}
/* Style the homepage section */
#home {
text-align: center;
padding: 10% 0; /* Adjust padding for different screen sizes */
}
#home h1 {
font-size: 4vw; /* Responsive font size based on viewport width */
}
#home p {
font-size: 2vw; /* Responsive font size based on viewport width */
margin-top: 2%; /* Adjust margin for spacing */
}
.cta-button {
display: inline-block;
padding: 1% 2%; /* Responsive padding based on viewport width */
background-color: #1a206b;
color: #fff;
text-decoration: none;
border-radius: 5px;
margin-top: 2%; /* Adjust margin for spacing */
font-weight: bold;
}
/* Style other sections as needed */
#about, #events, #projects, #blog, #contact {
background-color: #fff;
padding: 4% 2%; /* Responsive padding based on viewport width */
margin: 2%;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#about h2, #events h2, #projects h2, #blog h2, #contact h2 {
font-size: 3vw; /* Responsive font size based on viewport width */
margin-bottom: 2%; /* Adjust margin for spacing */
}
/* Add new styles for the footer */
footer {
text-align: center;
font-size: 1vw; /* Responsive font size based on viewport width */
background-color: #1a206b;
color: #fff;
padding: 1% 0;
position: absolute;
bottom: 0;
width: 100%;
}
.meeting_footer {
text-align: center;
font-size: 1vw; /* Responsive font size based on viewport width */
background-color: #1a206b;
color: #fff;
padding: 1% 0;
position: relative;
bottom: 0;
width: 100%;
}
footer p {
font-size: 1vw; /* Responsive font size based on viewport width */
margin-top: 0.3%; /* Adjust margin for spacing */
}
/* Style the social icons container */
.social-icons {
margin-top: 0.4%; /* Adjust margin for spacing */
transition: transform 0.3s ease-in-out;
}
/* Style the Instagram image */
.social-icons img {
width: 2.5vw; /* Responsive width based on viewport width */
height: auto;
margin-right: 1%; /* Adjust margin for spacing */
}
.social-icons img:hover {
transform: scale(1.2);
}