-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.scss
75 lines (65 loc) · 1.2 KB
/
main.scss
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
/*
gradient from uigradient.com
Cheer Up Emo Kid
Colour 1: #556270
Colour 2: #FF6B6B
main color: $main_color
background color: $background_color
*/
@import 'color';
@import 'preload';
@import 'menu';
@import 'global_widget';
@import 'index';
@import 'project';
@import 'about';
.unresolved {
display: none !important;
}
body {
background: #fafafa;
font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
color: white;
/* overflow-y: hidden;*/
overflow: hidden;
height: 100vh;
width: 100vw;
}
.gradient_overlay {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
background: $main_gradient;
}
.fullheight {
min-height: 100vh;
width: 100%;
float: left;
}
html {
overflow-y: auto;
background-color: transparent;
}
@media only screen and (max-device-width:480px) {
html {
overflow: auto;
}
}
.light_button{
box-sizing: border-box;
color:white;
background-color:transparentize(white, 0.7);
display:inline-block;
padding:5px 10px;
font-weight: bold;
cursor:pointer;
}
.overlay_popup{
position:absolute;
left:0;
top:0;
height:100vh;
pointer-events:none;
}