-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsamples.css
More file actions
119 lines (103 loc) · 1.75 KB
/
samples.css
File metadata and controls
119 lines (103 loc) · 1.75 KB
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
html
{
height: 100%;
width: 100%;
}
body
{
font: 12px/18px "Trebuchet MS", sans-serif;
margin: 0px;
}
select
{
width: 120px;
}
input[type=text]
{
font: 12px/18px "Trebuchet MS", sans-serif;
border: 1px solid #e2e4e7;
}
input[type=text]
{
outline: none;
}
::selection
{
background-color: #cfcfcf;
}
::-moz-selection
{
background-color: #cfcfcf;
}
#header
{
background-color: #fafafa;
border-bottom: 1px solid #e2e4e7;
overflow: auto;
padding: 5px;
}
#content
{
position: absolute;
left: 0px;
right: 401px;
}
#footer
{
background-color: #fafafa;
border-top: 1px solid #e2e4e7;
position: absolute;
bottom: 0px;
left: 0px;
right: 0px;
}
.label
{
font-weight: bold;
color: #999999;
display: block;
margin-bottom: 1px;
}
#info
{
width: 400px;
overflow: auto;
position: absolute;
right: 0px;
border-left: 1px solid #e2e4e7;
}
#copyright
{
display:block;
margin: 2px 10px;
float: right;
}
hr
{
border-width: 0px;
height: 1px;
background-image: -webkit-linear-gradient(left, rgba(226,228,231,0), rgba(226,228,231,1), rgba(226,228,231,0));
background-image: -moz-linear-gradient(left, rgba(226,228,231,0), rgba(226,228,231,1), rgba(226,228,231,0));
background-image: -ms-linear-gradient(left, rgba(226,228,231,0), rgba(226,228,231,1), rgba(226,228,231,0));
background-image: -o-linear-gradient(left, rgba(226,228,231,0), rgba(226,228,231,1), rgba(226,228,231,0));
}
#header a:link,
#header a:visited {
background-color: #eee;
border-radius: 4px;
color: #333;
padding: 4px 5px;
text-align: center;
text-decoration: none;
display: inline-block;
margin-top:10px;
}
#header a:hover,
#header a:active {
background-color: #e2e4e7;
}
#header #expandButton {
background-color: transparent;
border:none;
font-size: large;
}