forked from HackerUSA-CE/group-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
56 lines (51 loc) · 895 Bytes
/
style.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
/* Basic Styling - don't alter this part! */
html,
body {
margin: 0;
padding: 0;
text-align: center;
background-color: rgb(217, 234, 240);
color: #555;
}
header {
background: linear-gradient(to bottom right, rgb(92, 149, 235), #333);
color: white;
padding: 25px;
}
header h1 {
margin: 0;
}
main h2 {
color: black;
text-decoration: underline;
}
.container {
width: 65%;
margin: 0 auto;
}
/* Add Student Styles Below */
.lexis-style {
color: orangered;
background-color: black;
padding: 3px;
}
.jane-style {
color: hotpink;
background-color: black;
padding: 3px;
}
.code-ninja-style {
color: blue;
background-color: lightblue;
padding: 3px;
}
.codys-styles {
background:rgb(92, 149, 235);
}
.stans-styles {
background-color:lightgray;
}
.my-bio {
background-color: green;
color: white;
}