-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcsfacultystyle.css
More file actions
191 lines (153 loc) · 2.79 KB
/
csfacultystyle.css
File metadata and controls
191 lines (153 loc) · 2.79 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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
/* Author: Vishwa Venkateshwaran */
header {
margin: 0;
font-size: 35px;
background-color: #3d4848;
display: flex;
flex-wrap: nowrap;
height: 100px;
justify-content: space-between;
}
.wordCS {
color: #e8651f;
}
.wordInventory {
color: white;
}
header > h1 {
text-decoration: none;
font-weight: 400;
font-size: 35px;
margin-left: 25px;
align-self: center;
}
header > img {
align-self: center;
margin-right: 10px;
}
body {
background-color: #dedede;
}
.container {
display: flex;
flex-wrap: wrap;
}
.container2 {
width: 300px;
box-sizing: border-box;
background-color: whitesmoke;
transition: all 0.3s linear;
}
.actualImages {
box-sizing: border-box;
height: auto;
max-width: 100%;
}
.textUnderImg5 {
margin: 25px 25px 10px 30px;
}
.textUnderImg6 {
margin: 30px 50px 0px 40px;
}
.textUnderImg7 {
margin: 30px 25px 0px 50px;
}
.textUnderImg0 {
margin: 30px 25px 0px 40px;
}
.textUI {
font-family: sans-serif;
font-weight:500;
}
.seeMoreButton {
border-radius: 5px;
background-color: orangered;
border-color: orangered;
padding: 8px 13px;
color: white;
cursor:pointer;
opacity: 0;
}
.paraTitle {
font-family: sans-serif;
font-weight: 500;
}
.fontFamily {
font-family: sans-serif;
}
.container2:hover {
transform: scale(1.00005);
box-shadow: 7px 5px 15px rgba(33,33,33,.2);
cursor: pointer;
}
.container2:hover > button {
transition: opacity 2s ease-in-out;
opacity: 1;
}
.footer-link {
margin-top: 50px;
}
.footerLink {
text-decoration: none;
color:#bd3415;
}
.footerLink:hover {
color:#762311;
}
@media screen and (min-width: 771px) {
.container2 {
flex: 1;
}
.container2_1 {
margin: 20px 10px 0px 0px;
}
.container2_2 {
margin: 20px 10px 0px 0px;
}
.container2_3 {
margin: 20px 10px 0px 0px;
}
.container2_4 {
margin: 20px 0px 0px 0px;
}
}
@media screen and (min-width: 481px) and (max-width: 770px) {
.container2 {
flex: 45%;
}
.container2_1 {
margin: 20px 10px 0px 0px;
}
.container2_2 {
margin: 20px 0px 0px 0px;
}
.container2_3 {
margin: 20px 10px 0px 0px;
}
.container2_4 {
margin: 20px 0px 0px 0px;
}
header > h1 {
font-size: smaller;
}
}
@media screen and (max-width: 480px) {
.container2 {
flex: calc(700px);
}
.container2_1 {
margin: 20px 0px 0px 0px;
}
.container2_2 {
margin: 20px 0px 0px 0px;
}
.container2_3 {
margin: 20px 0px 0px 0px;
}
.container2_4 {
margin: 20px 0px 0px 0px;
}
header > h1 {
font-size: 20px;
}
}