-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
177 lines (155 loc) · 3.46 KB
/
Copy pathindex.html
File metadata and controls
177 lines (155 loc) · 3.46 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<!DOCTYPE html>
<head>
<title>Group 16 Homepage</title>
<style>
html,
body {
margin: 0;
height: 100%;
}
body {
display: flex;
flex-direction: column;
min-height: 100vh;
background-color: rgb(23, 30, 36);
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
color: rgb(196, 195, 195);
}
header {
background-color: rgb(11, 16, 22);
padding: 0 10px;
}
main {
flex: 1;
display: flex;
align-items: center;
flex-direction: column;
}
.main-container {
width: 80%;
display: flex;
flex-direction: column;
align-items: center;
}
.welcome-message {
width: 100%;
}
.members {
background-color: rgb(22, 27, 32);
padding: 10px 20px;
width: 100%;
box-sizing: border-box;
}
h1 {
color: rgb(222, 222, 223);
font-size: 36px;
}
h2 {
color: rgb(111, 142, 182);
font-size: 30px;
}
hr {
width: 100%;
border-color: rgb(171, 174, 179);
margin-bottom: 20px;
}
h3 {
color: rgb(110, 125, 145);
margin-bottom: 0px;
}
ul {
list-style: none;
/* max-width: 40em; */
padding: 0;
overflow-x: hidden;
position: relative;
}
ul div:first-child {
position: relative;
padding-right: 10px;
}
ul li div:first-child:before {
position: absolute;
right: 0;
width: 0px;
white-space: nowrap;
font-weight: 400;
content: ". . . . . . . . . . . . . . . . . . . . "
". . . . . . . . . . . . . . . . . . . . "
". . . . . . . . . . . . . . . . . . . . "
". . . . . . . . . . . . . . . . . . . . "
". . . . . . . . . . . . . . . . . . . . "
". . . . . . . . . . . . . . . . . . . . "
". . . . . . . . . . . . . . . . . . . . "
". . . . . . . . . . . . . . . . . . . . ";
}
ul div + div {
float: right;
}
ul li {
margin-bottom: 5px;
}
li * {
display: inline-block;
}
li .name {
font-weight: 700;
font-size: 16px;
}
li .email {
font-size: 12px;
z-index: 100;
position: relative;
}
a:link {
color: #e8aa3a;
}
a:hover {
color: #db9b25;
}
footer {
background-color: rgb(11, 15, 22);
text-align: center;
}
footer p {
margin: 10px;
}
</style>
</head>
<body>
<header>
<h1>Group 16 Homepage</h1>
</header>
<main>
<div class="main-container">
<div class="welcome-message">
<h2>Welcome to our Homepage!</h2>
</div>
<hr color="" />
<div class="members">
<h3>Team Members:</h3>
<ul>
<li>
<div class="name">Camille Jones</div>
<div class="email">
<a href="mailto:crjone24@ncsu.edu">(crjone24@ncsu.edu)</a>
</div>
</li>
<li>
<div class="name">Michael Sanchez</div>
<div class="email">
<a href="mailto:mdsanche@ncsu.edu">(mdsanche@ncsu.edu)</a>
</div>
</li>
<li>
<div class="name">Jacob Allard</div>
<div class="email">
<a href="mailto:jdallard@ncsu.edu">(jdallard@ncsu.edu)</a>
</div>
</li>
</ul>
</div>
</div>
</main>
<footer><p>© 2025 Group 16. Some Rights Reserved.</p></footer>
</body>