-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.less
More file actions
118 lines (114 loc) · 2.05 KB
/
stylesheet.less
File metadata and controls
118 lines (114 loc) · 2.05 KB
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
@import "mixins.less";
@light: #ededef;
@dark: #323232;
a:link,
a:visited,
a:hover,
a:active {
color: @dark;
}
@mobile: 600px;
body {
font-family: 'Raleway', sans-serif;
background-color: @light;
color: @dark;
padding: 100px 0;
@media only print {
font-size: 80%;
padding: 0;
}
}
.name {
border-top: 1px solid @dark;
border-bottom: 1px solid black;
text-align: center;
margin: 0 auto 10px;
padding: 10px;
max-width: 500px;
font-weight: 300;
font-size: 30pt;
text-transform: uppercase;
letter-spacing: 5px;
.responsive(@mobile, { font-size: 20pt; });
@media only print {
font-size: 16pt;
max-width: 300px;
padding: 5px;
margin-bottom: 5px;
}
}
.title {
text-align: center;
}
.contact {
text-align: center;
margin-top: 6px;
color: lighten(@dark, 10%);
font-size: 14px;
@media only print {
font-size: 80%;
margin-top: 4px;
}
}
.tech {
text-align: center;
color: fade(@dark, 80%);
font-size: 14px;
margin-top: 40px;
@media only print {
font-size: 75%;
margin-top: 4px;
}
}
h2 {
letter-spacing: 2px;
}
.section {
margin-top: 80px;
@media only print {
margin-top: 20px;
}
}
.pic {
margin: 10px auto 0;
text-align: center;
img {
max-width: 140px;
}
@media only print {
display: none;
}
}
.time {
font-weight: 800;
font-size: 14px;
color: lighten(@dark, 40%);
margin: 22px 0 6px;
@media only print {
margin: 10px 0;
}
}
.company {
font-weight: 800;
}
.position {
font-weight: 400;
font-style: italic;
font-size: 14px;
margin-bottom: 6px;
}
.summary {
padding-left: 12px;
margin-left: 6px;
border-left: 1px solid fade(@dark, 15%);
color: fade(@dark, 80%);
@media only print {
font-size: 12px;
}
}
.container {
max-width: 900px;
margin: 0 auto;
.responsive(1000px, { padding: 0 40px; });
.responsive(@mobile, { padding: 0 10px; });
}