-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom.css
124 lines (103 loc) · 1.88 KB
/
custom.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
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
html {
scroll-behavior: smooth;
}
.content-section {
padding-top: 80px;
padding-bottom: 0px;
}
#about {
height: 100%;
max-height: auto;
}
#contact {
height: 100%;
max-height: auto;
}
section>#inside-section {
display: flex;
height: 100%
}
#inside-section>.row {
margin: auto;
}
a>button {
width: 160px;
margin-bottom: 2em;
}
#center {
position: fixed;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
width: 60%;
}
@media (min-width: 34em) {
.card-columns {
-webkit-column-count: 2;
-moz-column-count: 2;
column-count: 2;
}
}
@media (min-width: 48em) {
.card-columns {
-webkit-column-count: 3;
-moz-column-count: 3;
column-count: 3;
}
}
@media (min-width: 62em) {
.card-columns {
-webkit-column-count: 4;
-moz-column-count: 4;
column-count: 4;
}
}
@media (min-width: 75em) {
.card-columns {
-webkit-column-count: 5;
-moz-column-count: 5;
column-count: 5;
}
}
.heading-title {
font-size: 5em;
}
.card-body {
background-color: black;
}
.fixed-top {
position: relative;
}
.login-moodle {
position: fixed;
bottom: 1em;
right: 1em;
}
#search-form {
position: fixed;
top: 1em;
left: 1em;
z-index: 999;
}
.card-columns {
z-index: 0;
}
.form-group {
width: 100%;
}
@media screen and (max-width: 600px) {
#center {
width: 90%;
}
}
.seif-logo {
width: 10%;
max-width: 100%;
height: 100%;
}
.masthead {
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 1)), url('bg.jpg')
}