blob: b5b543d60e2580ea78d05450fcda96b208741626 (
plain) (
blame)
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
|
/* ---- Includes ---- */
// --- Components
@import "components/footer";
@import "components/navgiation";
@import "components/project-section";
@import "components/hero";
@import "components/category-section";
@import "components/contact-form";
// --- Extras
@import "extra/mobile";
@import "extra/typewriter-effect";
@import "extra/scroll-down-icon-animation";
@import "extra/animate";
// --- Pages
@import "pages/project-page";
@import "pages/about-page";
@import "pages/work-page";
/* ---- Global Styling ---- */
* {
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: -moz-none;
-o-user-select: none;
user-select: none;
}
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
font-family: 'Roboto Mono', serif !important;
background: #0f0f0f !important;
color: #fff !important;
}
.whitespace {
width: 100%;
height: 100px;
}
@media(max-width: 768px) {
.whitespace {
display: none;
}
}
|