summaryrefslogtreecommitdiff
path: root/design/sass/_global.scss
blob: 346f44bf5a388e7fe9c5e85876b17b96790fd2ca (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
html {
    border-top: 0.25em solid $brown;
}

body {
    border-top: 1px solid #fbf9f7;
    margin: 0 auto;
    padding: 0;
    overflow-x: hidden;
    font: normal 100% / 1.5 Georgia, Cambria, "Times New Roman", Times, serif;
    color: $body_font;
    text-align: center;
    background-color: transparent
}

a {
    color: $orange;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -ms-transition: all 0.1s ease;
    transition: all 0.1s ease;
    &:hover {
        text-decoration: none;
    }
}

p {
    @include constrain_narrow();
    text-align: left;
    @include breakpoint(alpha){
        @include fontsize(18);
        line-height: 1.5;
    }
    @include breakpoint(gamma){
        @include fontsize(20);
        line-height: 1.6;
    }
}
time {
    @include smcaps;
    @include fontsize(11);
    display: block;
    span {
        @include fontsize(13);
    }
}

object, embed {
    max-width: 100%;
    height: auto;
}

img {
    max-width: 100%;
    max-width:98%;
    padding:1%; /* A percentage that, when doubled and added to the above, makes 100%. */
    background: $brown;
}

h1 {
    font-family:  Georgia, 'Times New Roman', serif;
    @include fontsize(36);
    font-weight: normal;
}

//**************  Universals ************************
.hide {
    display: none;
}

.yes {
    background: green !important;
    color: white;
}

.no {
    background: red !important;
    color: white;
}

//**************  other global classes ************************

.bl {
    @include smcaps;
    @include fontsize(11);
}


//****************  Page Breadcrumbs  ************************

#breadcrumbs {
    @include constrain_wide();
    text-align: center;
    li {
        display: inline;
    }
    a { color: $brown;}
    @include breakpoint(gamma) {
        text-align: left;
    }
}

.dark #breadcrumbs a, .black #breadcrumbs a {
    color: $body_font_light;
}
//************* Dark Pages *********************

.dark body {
    background: $brown;
    color: $body_font_light
}

.black body {
    background: #000;
    color: $body_font_light
}