summaryrefslogtreecommitdiffstats
path: root/devtools/client/framework/connect/connect.css
blob: 23959b93bf09efadc33fe054218459dd4635b9d5 (plain)
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
:root {
  font: caption;
}

html {
  background-color: #111;
}

body {
  font-family: Arial, sans-serif;
  color: white;
  max-width: 600px;
  margin: 30px auto 0;
  box-shadow: 0 2px 3px black;
  background-color: #3C3E40;
}

h1 {
  margin: 0;
  padding: 20px;
  background-color: rgba(0,0,0,0.12);
  background-image: radial-gradient(ellipse farthest-corner at center top , rgb(159, 223, 255), rgba(101, 203, 255, 0.3)), radial-gradient(ellipse farthest-side at center top , rgba(101, 203, 255, 0.4), rgba(101, 203, 255, 0));
  background-size: 100% 2px, 100% 5px;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

form {
  display: inline-block;
}

label {
  display: block;
  margin: 10px;
}

label > span {
  display: inline-block;
  min-width: 150px;
  text-align: right;
  margin-right: 10px;
}

#submit {
  float: right;
}

input:invalid {
  box-shadow: 0 0 2px 2px #F06;
}

section {
  min-height: 160px;
  margin: 60px 20px;
  display: none; /* By default, hidden */
}

.error-message {
  color: red;
}

.error-message:not(.active) {
  display: none;
}

body:not(.actors-mode):not(.connecting) > #connection-form {
  display: block;
}

body.actors-mode > #actors-list {
  display: block;
}

body.connecting > #connecting {
  display: block;
}

#connecting {
  text-align: center;
}

#connecting > p > img {
  vertical-align: top;
}

.actors {
  padding-left: 0;
}

.actors > a {
  display: block;
  margin: 5px;
  padding: 5px;
  color: white;
}

.remote-process {
  font-style: italic;
  opacity: 0.8;
}

footer {
  padding: 10px;
  background-color: rgba(0,0,0,0.12);
  border-top: 1px solid rgba(0,0,0,0.1);
  font-size: small;
}

footer > a,
footer > a:visited {
  color: white;
}