-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathapp.css
More file actions
84 lines (71 loc) · 1.38 KB
/
Copy pathapp.css
File metadata and controls
84 lines (71 loc) · 1.38 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
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
body {
font-family: 'Segoe UI', sans-serif;
}
html, body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
font-family: 'Poiret One', cursive;
}
#main-container {
width: 100%;
min-height: 100%;
text-align: center;
}
header, footer, .push {
height: 50px;
}
header, footer {
background: black;
color: white;
}
.push, footer, .clear {
clear: both;
}
.code-container {
width: 100%;
max-width: 800px;
margin: auto;
}
pre {
text-align: left;
overflow: auto;
white-space: pre-wrap; /* CSS3 browsers */
white-space: -moz-pre-wrap !important; /* 1999+ Mozilla */
white-space: -pre-wrap; /* Opera 4 thru 6 */
white-space: -o-pre-wrap; /* Opera 7 and up */
word-wrap: break-word; /* IE 5.5+ and up */
/* overflow-x: auto; */ /* Firefox 2 only */
/* width: 99%; */ /* only if needed */
}
header {
position: fixed;
width: 100%;
}
footer {
margin-top: -50px;
}
header h1, footer a {
display: block;
text-decoration: none;
color: white;
margin: auto;
width: 200px;
text-align: center;
padding: 0;
line-height: 50px;
}
footer a:hover {
color: navajowhite;
}
.graph-box {
width: 60%;
margin: auto;
height: 400px;
}
@media (max-width: 600px) {
.graph-box{
width: 100%;
}
}