-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
94 lines (76 loc) · 1.69 KB
/
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
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
.projects-card .mdl-card__title {
padding-bottom: 0;
}
img.card-image, img.fullpage-image {
width: 100%;
height: auto;
}
.page-max-width {
max-width: 1100px;
margin: auto;
}
.logo-image {
width: 180px;
height: auto;
}
.ami-header {
overflow: visible;
}
.ami-header .material-icons {
color: #767777 !important;
}
.ami-header .mdl-navigation__link {
color: #757575;
font-weight: 700;
font-size: 14px;
}
.navigation-container {
/* Simple hack to make the overflow happen to the left instead... */
direction: rtl;
order: 1;
width: 500px;
transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1),
width 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.navigation {
/* ... and now make sure the content is actually LTR */
direction: ltr;
justify-content: flex-end;
width: 800px;
}
.navigation .mdl-navigation__link {
display: inline-block;
height: 60px;
line-height: 68px;
background-color: transparent !important;
border-bottom: 4px solid transparent;
}
.navigation .mdl-navigation__link:hover {
border-bottom: 4px solid #448AFF;
}
.navigation .active {
border-bottom: 4px solid #448AFF;
}
.mdl-layout .side-navigation .active {
color: #448AFF;
font-weight: 700;
}
.course-overview {
width: initial;
}
.img-vcenter {
align-items: center;
}
.mdl-mini-footer__social-btn {
background-color: transparent;
}
.social-icon {
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
}
/**** Mobile layout ****/
@media (max-width: 900px) {
.navigation-container {
display: none;
}
}