-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
91 lines (73 loc) · 1.23 KB
/
style.css
File metadata and controls
91 lines (73 loc) · 1.23 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
/* Author: Vishwa Venkateshwaran */
body {
background-color: #dedede;
}
.flex-container {
margin-top: 25px;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
header {
margin: 0;
font-size: 35px;
background-color: #3d4848;
display: flex;
height: 100px;
justify-content: space-between;
}
header > h1 {
text-decoration: none;
font-weight: 400;
font-size: 35px;
margin-left: 25px;
align-self: center;
}
.wordTB {
color: #e8651f;
}
.wordInventory {
color: white;
}
header > img {
align-self: center;
margin-right: 10px;
}
.indentation {
margin-left: 12px;
}
.moreIndentation {
margin-left: 25px;
}
.paraTitle {
font-family: sans-serif;
font-weight: 500;
}
.fontFamily {
font-family: sans-serif;
}
.facultyLink {
text-decoration: none;
color:#9a2b09;
}
.hide {
display: none;
}
.facultyLink:hover ~ .hide {
display: block;
}
@media screen and (min-width: 550px) {
.flex-container2 {
max-width: 100%;
flex: 50%;
}
}
@media screen and (max-width: 549px) {
.flex-container2 {
max-width: 100%;
flex: 100%;
}
.sectionContainer2 {
margin-top: 25px;
}
}