-
Notifications
You must be signed in to change notification settings - Fork 14
/
style.css
178 lines (154 loc) · 3.78 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
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
html {
width : 100%;
height : 100%;
}
body {
margin : 0;
padding : 0;
overflow : hidden;
background : #EEE;
font-family: sans-serif;
font-size : 14px;
color : #444;
width : 100%;
height : 100%;
}
#container {
position : fixed;
top : 31px;
right : 3px;
bottom : 3px;
left : 3px;
border : 1px solid #AAA;
border-radius: 3px;
overflow : hidden;
}
.input-wrap {
position : absolute;
top : 3px;
left : 70px;
right : 100px;
height : 26px;
border-radius: 3px 0 0 3px;
}
.input-wrap:before {
content : "FHIR Url";
position : absolute;
left : -65px;
top : 7px;
font-weight: bold;
}
.input-wrap input {
display : block;
width : 100%;
border : 1px solid #AAA;
border-radius: 3px 0 0 3px;
box-sizing : border-box;
margin : 0;
height : 26px;
font : inherit;
outline : none;
padding : 0 10px;
z-index : 1;
position : relative;
}
.input-wrap input:focus {
z-index : 2;
border-color: rgb(0, 195, 255);
}
.btn {
position : absolute;
top : 3px;
right : 3px;
width : 98px;
height : 26px;
box-sizing : border-box;
border-radius: 0 3px 3px 0;
border : 1px solid rgba(0, 0, 0, 0.3);
background : #EEE linear-gradient(#EEE, #DDD);
font : inherit;
text-shadow : 0 1px 0 #FFF;
outline : none;
cursor : pointer;
box-shadow : 0 1px 0 0 #FFF inset;
}
.btn:hover {
background-image: linear-gradient(#FFF, #EEE);
}
.btn:active {
background-image: linear-gradient(#CCC, #DDD);
box-shadow : 0 1px 1px 0 #999 inset;
}
.btn:focus {
border-color: rgb(0, 195, 255);
}
.btn:after {
content : "";
display : inline-block;
margin-left : 1ch;
width : 0;
height : 0;
border-width : 5px 0 5px 5px;
border-style : inset inset inset solid;
border-top-color : transparent;
border-bottom-color: transparent;
}
.message {
background : #FFC;
border : 1px solid #CC9;
padding : 1em 2em;
position : absolute;
top : 50%;
left : 50%;
border-radius : 3px;
-webkit-transform: translate(-50%, -50%);
-moz-transform : translate(-50%, -50%);
-ms-transform : translate(-50%, -50%);
transform : translate(-50%, -50%);
}
/* Starting the dark theme -------------------------------------------------- */
body.dark {
background: #555;
color : #AAA;
}
body.dark .message {
background : rgb(182, 118, 0);
border-color: orange;
color : white;
text-shadow : 0px 1px 0px rgba(0, 0, 0, 0.3);
}
body.dark .input-wrap {
box-shadow: 0 0 0 1px #333;
}
body.dark .input-wrap:before {
text-shadow: 0 0 1px #000;
}
body.dark #container {
border-color: #777;
}
body.dark .input-wrap input {
background : #2e2e2e;
border-color: #777;
color : #CCC;
}
body.dark .input-wrap input:focus {
box-shadow: 0px 0px 0 1px orange;
}
body.dark .btn {
background : #333 linear-gradient(#555, #333);
border-color: #777;
text-shadow : 0 0 1px #000;
color : #CCC;
box-shadow : 0px 0px 0 1px #333;
}
body.dark .btn:hover {
background-image: linear-gradient(#666, #444);
}
body.dark .btn:active {
background-image: linear-gradient(#111, #333);
box-shadow : 0px 0px 0 1px #000, 0 1px 1px 0 #000 inset;
border-color : #000;
}
body.dark .btn:focus {
box-shadow: 0px 0px 0 1px orange;
}