-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.less
102 lines (64 loc) · 1.37 KB
/
app.less
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
@import url("https://fonts.googleapis.com/css?family=Roboto:400,900|Fira+Sans:400,700&display=swap");
// Media
// @mobile_width: 350px;
@tablet_width: 750px;
// Colors
@ghost_gray: rgb(243, 243, 243);
@light_gray: rgb(155, 155, 155);
@gray: rgb(120, 120, 120);
@dark_gray: rgb(70, 70, 70);
@darker_gray: rgb(51, 51, 51);
@blue: rgb(41, 41, 255);
@light_blue: rgb(100, 181, 251);
@red: rgb(255, 41, 41);
@light_red: lighten(@red, 20%);
@pink: #FA73AE;
@light_pink: lighten(@pink, 10%);
// Font
@largest_font: 125px;
@larger_font: 42pt;
@large_font: 28pt;
@medium_font: 18.5pt;
@small_font: 15px;
@body_font: "Fira Sans";
@header_font: "Roboto";
@h1_line_height: 50px;
@h2_line_height: 40px;
@h3_line_height: 30px;
@body_slant: -10deg;
@header_slant: -10deg;
// Border
@radius: 1px;
// Input/Button
@input_padding: 10px 17px;
// Assignment
.shadow () {
box-shadow: -10px 10px @dark_gray;
}
.italicize_body () {
font-style: italic;
// transform: skew(@body_slant);
}
.italicize_header () {
font-style: italic;
// transform: skew(@header_slant);
}
.issuuembed {
margin-top: 20px;
width: 100% !important;
height: 500px !important;
}
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
font-family: @body_font;
}
* {
position: relative;
box-sizing: border-box;
// vertical-align: middle;
}
@import "layout.less";
@import "components.less";