-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.css
85 lines (71 loc) · 1.29 KB
/
header.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
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body {
margin: 0;
padding: 0;
background-color: white;
}
header {
width: 100%;
background-color: white;
color: white;
/* padding: 10px 0; */
text-align: center;
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}
.header-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 40px;
color: #212331;
}
.header-flex {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
}
.institution-info, .admission-info {
text-align: left;
flex: 1;
}
.cit-logo {
width: 110px;
margin: 0 150px;
}
.primary-text {
font-size: 20px;
font-weight: bold;
}
.secondary-text, .tertiary-text {
font-size: 14px;
}
@media (max-width: 768px) {
.header-flex {
flex-direction: row;
justify-content: space-between;
}
.cit-logo {
width: 80px;
margin: 10px 0;
}
.header-container {
padding: 0 20px;
}
}
@media (max-width: 480px) {
.institution-info{ /*.cit-logo { */
display: none;
}
.header-flex {
justify-content: flex-end;
}
header {
/* padding: 5px 10px; */
text-align: right;
}
}