Commit | Line | Data |
---|---|---|
7d81b70d MF |
1 | /* |
2 | * The default (light) style. | |
3 | */ | |
4 | ||
af998961 MF |
5 | body { |
6 | color: #440077; | |
7 | background-color: white; | |
8 | } | |
9 | .inverted { | |
10 | color: white; | |
11 | background-color: #440077; | |
12 | } | |
13 | ||
14 | a { | |
15 | color: #440077; | |
16 | } | |
17 | a:visited { | |
18 | color: #51188E; | |
19 | } | |
20 | a:active { | |
21 | color: #FF0000; | |
22 | } | |
23 | ||
24 | .inverted a { | |
25 | color: white; | |
26 | } | |
98ba3ec9 BS |
27 | |
28 | * { | |
29 | box-sizing: border-box; | |
30 | } | |
31 | ||
32 | .onecolumn { | |
33 | float: left; | |
34 | width: 45%; | |
35 | padding: 5%; | |
36 | } |