-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
89 lines (73 loc) · 1.13 KB
/
style.css
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
/* style.css
* This file provides css styles.
*/
body,html {
background-color: #3b4b54; width : 100%;
height: 100%;
margin: 0 auto;
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
color: #ffffff;
}
a {
text-decoration: none;
color: #00aed1;
}
a:hover {
text-decoration: underline;
}
.newappIcon {
padding-top: 10%;
display: block;
margin: 0 auto;
padding-bottom: 2em;
max-width:200px;
}
h1 {
font-weight: bold;
font-size: 2em;
}
.leftHalf {
float: left;
background-color: #26343f;
width: 45%;
height: 100%;
}
.rightHalf {
float: right;
width: 55%;
background-color: #313f4a;
height: 100%;
overflow:auto;
}
.description {
padding-left: 50px;
padding-right: 50px;
text-align: center;
font-size: 1.2em;
}
.blue {
color: #00aed1;
}
table {
table-layout: fixed;
width: 800px;
margin: 0 auto;
word-wrap: break-word;
padding-top:10%;
}
th {
border-bottom: 1px solid #000;
}
th, td {
text-align: left;
padding: 2px 20px;
}
.env-var {
text-align: right;
border-right: 1px solid #000;
width: 30%;
}
pre {
padding: 0;
margin: 0;
}