joeni

base.scss

1
a.btn {
2
    font-family: ubuntu;
3
    border-style: solid;
4
    text-transform: uppercase;
5
    border-width: 0.3em;
6
    margin-right: 1em;
7
    border-color: $uhasselt-color;
8
    padding: 0.2em;
9
    text-decoration: none;
10
    color: $uhasselt-color;
11
    font-weight: bold;
12
}
13
a.btn:hover {
14
    background-color: $uhasselt-color;
15
    color: white;
16
    text-transform: uppercase;
17
}
18
19
dl dt {
20
    margin: 5px;
21
}
22
23
.event {
24
    padding: 5px;
25
    color: white;
26
    a {
27
        text-decoration: none;
28
        color: inherit;
29
        &:hover {
30
            text-decoration: white underline dotted;
31
            font-style: italic;
32
        }
33
    }
34
}
35
36
td {
37
    padding-right: 1em;
38
}
39
40
.event-update {
41
    padding: 5px;
42
    background-color: yellow;
43
    color: red;
44
    border: medium dotted red;
45
    a {
46
        text-decoration: none;
47
        color: inherit;
48
        &:hover {
49
            text-decoration: red underline dotted;
50
            font-style: italic;
51
        }
52
    }
53
}
54
.event-new {
55
    padding: 5px;
56
    background-color: white;
57
    color: black;
58
    border: medium dashed black;
59
    a {
60
        text-decoration: none;
61
        color: inherit;
62
        &:hover {
63
            text-decoration: black underline dotted;
64
            font-style: italic;
65
        }
66
    }
67
}
68
.event-note {
69
    /* FIXME This is disabled because of time limitations.
70
    padding: 5px;
71
    color: purple;
72
    border: medium double purple;*/
73
    padding: 5px;
74
    a {
75
        text-decoration: none;
76
        color: inherit;
77
        &:hover {
78
            text-decoration: white underline dotted;
79
            font-style: italic;
80
        }
81
    }
82
}
83
.event-conflict {
84
    padding: 5px;
85
    background-color: red;
86
    color: white;
87
    border: medium dashed;
88
    border-color: inherit;
89
    a {
90
        text-decoration-color: blue;
91
        font-style: italic;
92
        }
93
}
94
95
p.conflict {
96
    width: 50%;
97
    @media screen
98
    and (max-device-width: 440px)
99
    and (max-device-height: 800px) {
100
        width: 100%;
101
    }
102
}
103