about summary refs log tree commit diff stats
path: root/app/assets/stylesheets/application.css
blob: 6fd12b7e76988858ae94ed43c3924838b88bfce7 (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
/*
 * 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: 50%;
  border: 1px solid black;
  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;
}

#banner {
  width: 100%;
  border-bottom: 1px solid black;
  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;
  border-right: 1px solid black;
}

#sidebar {
  width: 25%;
  box-sizing: border-box;
  padding-right: 1em;
}