Skip to content

Commit 9828487

Browse files
committed
initial import.
0 parents commit 9828487

File tree

3 files changed

+4502
-0
lines changed

3 files changed

+4502
-0
lines changed

assets/protocol.css

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
html {
2+
color: #666;
3+
font-size: 62.5%;
4+
font-family: "Open Sans", Helvetica, Arial, sans-serif;
5+
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.34);
6+
}
7+
body {
8+
font-size: 1.4rem;
9+
padding-top: 2rem;
10+
} /* =14px */
11+
12+
h1, h2, h3, h4 {
13+
font-weight: normal;
14+
}
15+
16+
h1 {
17+
font-size: 3.6rem;
18+
} /* =36px */
19+
20+
h3 {
21+
font-size: 3.6rem;
22+
}
23+
24+
h4 {
25+
font-size: 2.4rem;
26+
margin-top: 3.6rem;
27+
}
28+
29+
dt {
30+
font-style: italic;
31+
}
32+
33+
header, footer, .content {
34+
min-width: 320px;
35+
width: 80%;
36+
max-width: 1024px;
37+
margin: 1rem auto 1.5rem;
38+
}
39+
40+
label:after {
41+
content: ":";
42+
}
43+
44+
select {
45+
margin-right: 1.5em;
46+
}
47+
48+
.select-field {
49+
white-space: nowrap;
50+
float: left;
51+
}
52+
53+
.content {
54+
background-color: lightblue;
55+
background-image: -webkit-linear-gradient(top, rgba(255,255,255,.6) 0%,rgba(255,255,255,0) 100%);
56+
min-height: 300px;
57+
border: 1px solid rgba(153, 153, 153, 0.32);
58+
border-radius: 2px;
59+
-webkit-transition: background-color .24s linear;
60+
padding: 1.5rem;
61+
}
62+
63+
.filter {
64+
background-image: -webkit-linear-gradient(top,rgba(69,72,77,.65) 0%,rgba(0,0,0,.85) 100%);
65+
color: #CCC;
66+
box-shadow: 0 -1px 0px 0px rgba(255, 255, 255, 0.8);
67+
border-radius: 3px;
68+
padding: .75em;
69+
overflow: hidden;
70+
}
71+
72+
.hidden {
73+
display: none;
74+
}
75+
.parameter-list {
76+
padding-top: 1rem;
77+
}
78+
.parameter-list:before {
79+
content: "Parameters";
80+
font-size: 1.4rem;
81+
margin-top: -3.6rem;
82+
83+
font-weight: bold;
84+
}
85+
86+
.optional {
87+
opacity: .65;
88+
}
89+
.optional:before {
90+
content: "[";
91+
}
92+
93+
.optional:after {
94+
content: "]";
95+
}

0 commit comments

Comments
 (0)