-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapplication.css
More file actions
58 lines (53 loc) · 1.28 KB
/
application.css
File metadata and controls
58 lines (53 loc) · 1.28 KB
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
/*
* 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, vendor/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 styles
* defined in the other CSS/SCSS files in this directory. It is generally better to create a new
* file per style scope.
*
*= require_tree .
*= require_self
*/
.container {
position: relative;
top: 50px;
}
body {
background-color: gainsboro;
}
nav {
background-color: skyblue;
padding: 10px;
border: 4px;
height: auto;
border-style: groove;
max-width: 50%;
position: fixed;
display: inline-block;
text-align: center;;
top: 0;
left: 0;
z-index: 100;
}
.character_controls {
background-color: skyblue;
padding: 10px;
border: 4px;
height: auto;
border-style: groove;
max-width: 50%;
display: inline-block;
text-align: center;;
top: 0;
left: 0;
z-index: 100;
}
.nav-list-item {
display: inline-block;
list-style-type: none;
}