summaryrefslogtreecommitdiff
path: root/assets/less/style.less
blob: dfa5d4b672e253ff7daae17720b508b0f3092995 (plain)
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
@import "normalize";
@import "global";
@import "960_12_col";
@import "960-responsive";
@import "syntax";

* {
    padding: 0;
    margin: 0;
}

body {
    font-family: 'minion-pro', serif;
    font-size: 22px;
    color: @base03;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'myriad-pro', sans-serif;
    font-weight: 600;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

a {
    color: @red;
    text-decoration: none;
    .transition(color, 0.25s, linear);

    &:hover {
        color: darken(@red, 15%);
    }
}

footer {
    font-family: 'myriad-pro', sans-serif;
    text-align: center;
    padding-top: 2em;
    padding-bottom: 2em;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.8em;
    color: @base1;
}

header {

    font-family: 'myriad-pro', sans-serif;

    a {
        font-size: 1em;
        font-weight: 600;
        color: rgb(255, 255, 255);
        display: block;
        text-align: center;
        padding-top: 0.5em;
        padding-bottom: 0.5em;

        &:hover {
            color: rgb(255, 255, 255);
        }
    }

    .projects {
        .nav_button(@green);
    }

    .writing {
        .nav_button(@orange);
    }

    .github {
        .nav_button(@blue);
    }

    .resume {
        .nav_button(@magenta);
    }
}

.about {
    text-align: center;
}

.portrait {
    border-radius: 220px;
    width: 220px;
    height: 220px;
    margin-top: 2em;
    margin-left: auto;
    margin-right: auto;
    background-image: url('/assets/images/ben_circle.png');
    background-repeat: no-repeat;
}

.project h1 a {
    color: @green;
    &:hover {
        color: darken(@green, 15%);
    }
}

.writing h1 a {
    color: @orange;
    &:hover {
        color: darken(@orange, 15%);
    }
}

.doc_detail {

    .date {
        color: @base1;
        margin-bottom: 1em;
    }

    img {
        max-width: 100%;
    }

    p {
        line-height: 1.5em;
        margin-bottom: 1.5em;
    }

    ul {
        margin-left: 2em;
        list-style-type: square;
        margin-bottom: 1em;
    }

    code {
        font-family: 'source-code-pro';
        font-size: 0.7em;
        color: @base01;
        background-color: @base3;
        border: 1px solid @base2;
        border-radius: 2px;
        padding: 0 3px;
    }
}

@media print {
    header {
        display: none;
    }

    footer {
        display: none;
    }
}