forked from selectize/selectize.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_stylesheet.css
106 lines (105 loc) · 1.87 KB
/
_stylesheet.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
body {
font-family: Helvetica, arial, sans-serif;
font-size: 15px;
font-weight: 300;
color: #454545;
background: #f8f8f8;
-webkit-font-smoothing: antialiased;
}
a, a:visited {
color: #3fabff;
text-decoration: none;
}
a:hover {
color: #008af5;
}
h1 {
font-size: 20px;
margin-bottom: 30px;
}
h2 {
font-size: 15px;
color: #a0a0a0;
margin: 30px 0;
}
label {
display: block;
font-weight: bold;
margin-bottom: 10px;
}
p, .control-group {
margin: 0 0 20px 0;
}
.demo {
background: #fff;
padding: 30px;
margin: 0 0 20px 0;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.1);
-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.1);
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.demo select, .demo input, .demo .selectize-control {
width: 100%;
}
.demo > *:first-child {
margin-top: 0;
}
.demo > *:last-child {
margin-bottom: 0;
}
.demo .value {
margin: 0 0 10px 0;
font-size: 12px;
}
.demo .value span {
font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
}
#wrapper {
margin: 100px;
}
pre {
background: #f8f8f8;
border: 1px solid #f2f2f2;
padding: 10px;
font-size: 12px;
font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
input[type=button] {
margin: 0 10px 0 0;
padding: 6px 10px;
color: #606060;
background: #e0e0e0;
border: 0 none;
width: auto;
display: inline-block;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-font-smoothing: antialiased;
}
.buttons {
margin: 0 0 25px 0;
}
input[type=button]:hover {
background: #dadada;
}
@media only screen and (max-width : 320px) {
#wrapper {
margin: 0;
}
h1 {
margin: 20px;
}
.demo {
padding: 20px;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
}