forked from mikekelly/hal-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
78 lines (65 loc) · 1.26 KB
/
styles.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
html, body, #browser, .hal-browser { height: 100%; }
#browser #location-bar { margin: 10px 0; }
#browser #location-bar .address {
border: 1px solid #999;
padding: 4px; margin: 0;
}
#browser #headers-bar {
border: 1px solid #888;
padding: 5px
}
#request-headers {
border: 0;
outline: none;
padding: 0;
resize: vertical;
width: 100%;
height: 40px;
margin-bottom: 0px;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.inspector { height: 100%; }
.documentation { height: 100%; }
.documentation iframe { width: 100%; height: 100%; }
.modal input, .modal textarea {
width: 90%;
}
.modal textarea {
height: 100px;
}
.links .btn {
padding: 2px 5px 2px;
font-size: 12px;
line-height: 14px;
}
body table.table {
font-size: 11px;
}
.location-bar-container {
line-height: 30px;
}
.ajax-loader {
vertical-align: middle;
background-image: url("./vendor/img/ajax-loader.gif");
background-repeat: no-repeat;
width: 16px;
height: 16px;
margin-left: 6px;
opacity: 0;
display: inline-block;
transition: opacity 1s;
}
.ajax-loader.visible {
opacity: 1;
}
.embedded-resource-title {
font-style: italic;
}
.embedded-resource-title:before {
content: "\"";
}
.embedded-resource-title:after {
content: "\"";
}