blob: 40358bbb7d2a96f5b098e60953a0b0feb2eb6007 (
plain) (
blame)
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
|
/*
* This is a manifest file that'll be compiled into application.css, which will include all the files
* listed below.
*
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
* vendor/assets/stylesheets directory can be referenced here using a relative path.
*
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
* compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
* files in this directory. Styles in this file should be added after the last require_* statement.
* It is generally better to create a new file per style scope.
*
*= require normalize-rails
*= require_tree .
*= require_self
*/
@import url('https://fonts.googleapis.com/css?family=Inconsolata');
body {
background-color: #bfefff;
}
#container {
margin: 5em auto 0;
width: 70%;
background-color: white;
box-sizing: border-box;
-webkit-border-top-left-radius: 15px;
-webkit-border-top-right-radius: 15px;
-moz-border-radius-topleft: 15px;
-moz-border-radius-topright: 15px;
border-top-left-radius: 15px;
border-top-right-radius: 15px;
min-width: 890px;
}
#banner {
width: 100%;
padding: 1em;
box-sizing: border-box;
}
#banner h1 {
text-align: center;
margin: 0;
}
#banner h1 a {
text-decoration: none;
color: black;
}
#banner h1 a:visited {
color: black;
}
#main {
display: -webkit-flex;
display: flex;
}
#content {
width: 75%;
box-sizing: border-box;
}
#sidebar {
width: 25%;
box-sizing: border-box;
padding-right: 1em;
font-size: .75em;
color: #352712;
}
#sidebar h2 {
font-size: 1em;
}
|