--- - room: Starting Room door: Main Door - room: Second Room door: Exit Door - room: Crossroads door: Tower Entrance - room: Orange Tower Fourth Floor door: Hot Crusts Door - room: Outside The Initiated door: Shortcut to Hub Room - room: Orange Tower First Floor door: Shortcut to Hub Room - room: Directional Gallery door: Shortcut to The Undeterred - room: Orange Tower First Floor door: Salt Pepper Door - room: The Tenacious door: Shortcut to Hub Room - room: Outside The Agreeable door: Tenacious Entrance g src='/cgit.png' alt='cgit logo'/> index : thoughts
mixed-content personal blog
about summary refs log tree commit diff stats
path: root/app/assets/stylesheets/main/layout.scss
blob: 8ddfdf08d88552d826bdb4c22e420ac8be8620c5 (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
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
body#main-body {
  background-color: #bfefff;
  height: 100%;
}

#container {
  height: 100%;
  margin: 7em auto 0;
  width: 75%; /* 66% */
  box-sizing: border-box;
  min-width: 890px;
  display: flex;
  flex-direction: row-reverse;
}

@keyframes trottingPonies {
  from { background-position-x: 0px; }
  to { background-position-x: -1280px; }
}

#banner {
  background-image: image-url("walk_cycle.png");
  background-repeat: repeat-x;
  animation: trottingPonies 1s steps(16) infinite;
  width: 100%;
  padding: 1em;
  box-sizing: border-box;
  text-indent: -9999px;
  height: 80px;
  margin-bottom: -80px;
  position: relative;
  top: -70px;

  a {
    display: block;
    width: 100%;
    height: 55px;
  }
}

#main {
  background-color: white;
  -webkit-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
  box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
  width: 75%;
  min-width: 720px
}

#content {
  box-sizing: border-box;
  padding: 1em 0;
}

#flash {
  width: 100%;
  text-align: center;
  padding: .25em;
  font-weight: bold
}

.flash-notice {
  background-color: #fffde8;
}

.flash-alert {
  background-color: #ff6a6a;
}

#sidebar {
  box-sizing: border-box;
  width: 25%;
  font-size: .75em;
  color: black;
  border-left: 1px solid #eee;
  margin-top: 1em;
  margin-bottom: 2em;
}

#sidebar h2 {
  font-size: 1em;
  margin: 0;
}

.sidebar-module {
  padding: 1em;
  margin-top: 1em;
  box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.75);
}

.sidebar-module:nth-child(2n+1) {
  background-color: #feff8f;
}

.sidebar-module:nth-child(2n+2) {
  background-color: #8fefab;
}

.sidebar-module p {
  margin-bottom: 0;
}

.sidebar-module ul {
  padding-left: 0;
  margin-bottom: 0;
}

.sidebar-module li {
  list-style-type: none;
}

.sidebar-module a {
  text-decoration: none;
}

.sidebar-module a:hover {
  text-decoration: underline;
}

.sidebar-module a:visited {
  color: #352712;
}

.breadcrumb {
  margin-left: 1em;

  a, a:visited {
    color: #555d66;
    text-decoration: none;
    font-size: .75em;
  }

  a:hover {
    text-decoration: underline;
  }
}