-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathea.less
99 lines (80 loc) · 1.39 KB
/
ea.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
@import url(http://fonts.googleapis.com/css?family=Lato:300,400);
@nav-background: rgba(255, 255, 255, 0.95);
@nav-height: 64px;
@blue: #4E9DCE;
@grey: grey;
@white: white;
@black: rgb(45, 40, 30);
@font: "Lato", sans-serif;
// TODO: This is going to have to change with the various breakpoints
@ea-image-width: 12%;
@inline-space: 4px;
@small: 480px;
@medium: 900px;
body {
background-color: #999;
}
a {
color: @blue;
}
.hide-for-small {
@media (max-width: @medium) {
display: none;
}
}
.hide-for-large {
@media (min-width: @medium) {
display: none;
}
}
.clear {
clear: both;
}
.close-window, .close-window-overlay{
display: block;
position: fixed;
right: 15px;
top: 60px;
width: 32px;
height: 32px;
z-index: 9;
font-size: 24px;
font-weight: 300;
line-height: 0px;
padding: 11px 3px;
text-decoration: none;
a {
display: block;
position: absolute;
height: 100%;
width: 100%;
text-decoration: none;
text-align: center;
vertical-align: middle;
}
h3 {
display: block;
}
}
.close-window-overlay {
h3 {
font-size: 30px;
color: #FFFFFF;
}
}
.close-window {
color: #000;
h3 {
font-size: 20px;
color: #000000;
}
}
#tumblr_controls {
display: none;
}
// Import other less files
@import "details.less";
@import "navdrawer.less";
@import "nav.less";
@import "gallery.less";
@import "status.less";