"Fossies" - the Fresh Open Source Software Archive 
Member "jq-1.6/docs/public/css/base.scss" (2 Nov 2018, 3227 Bytes) of package /linux/misc/jq-1.6.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Sass/SCSS source code syntax highlighting (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
See also the latest
Fossies "Diffs" side-by-side code changes report for "base.scss":
1.5_vs_1.6.
1 @charset "utf-8";
2 body {
3 padding-top: 80px;
4 }
5
6 .container {
7 max-width: 970px;
8 }
9
10 /* index.liquid *******************************************/
11
12 #blurb {
13 padding-top: 40px;
14 p {
15 font-size: 1.9em;
16 }
17 .btn-group {
18 margin: 4px;
19 }
20 }
21
22 #multiblurb {
23 line-height: 1.7;
24 text-align: center;
25 font-size: 12pt;
26 code {
27 border: 0;
28 font-size: 12pt;
29 }
30 }
31
32 #news {
33 font-size: 12pt;
34 .date {
35 font-style: italic;
36 }
37 }
38
39 /* default.liquid *****************************************/
40
41 .tutorial-example {
42 position: relative;
43 margin-bottom: 10px;
44 pre {
45 margin-bottom: 0px;
46 }
47 a {
48 position: absolute;
49 top: 0px;
50 right: 0px;
51 padding: 15px 8px;
52 color: #777777;
53 font-weight: bold;
54 line-height: 10px;
55 font-size: 12px;
56 border-left: 1px solid #DDDDDD;
57 display: block;
58 }
59 .accordion-body pre {
60 margin: 0 4px;
61 border-top: 0;
62 border-top-left-radius: 0;
63 border-top-right-radius: 0;
64 }
65 }
66
67 @media print {
68 .tutorial-example a {
69 display: none;
70 }
71 }
72
73 /* manual.liquid ******************************************/
74
75 section {
76 padding-top: 24px;
77 }
78
79 h3 code {
80 border: 0;
81 font-size: 20px;
82 }
83
84 @media(max-width: 991px){
85 #navcolumn {
86 /* Put nav column above manual content */
87 position: relative !important;
88 margin-bottom: 60px;
89 }
90 }
91
92 @media(min-width: 992px) {
93 #manualcontent {
94 /* Put nav column left of manual content */
95 padding-left: 280px;
96 }
97 }
98
99 .nav-pills {
100 li a {
101 padding: 8px 12px;
102 }
103 margin-bottom: 20px;
104 }
105
106 .manual-example table {
107 border-top: 1px solid #E5E5E5;
108 td {
109 white-space: pre-wrap;
110 font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
111 }
112 td.jqprogram {
113 font-weight: bold;
114 }
115 th {
116 text-align: right;
117 padding-right: 10px;
118 }
119 }
120
121 @media print {
122 #navcolumn {
123 display: none !important;
124 }
125 .manual-example {
126 display: block !important;
127 height: auto !important;
128 }
129 .jqplay-btn {
130 display: none !important;
131 }
132 }
133
134 /* shared/_footer.liquid **********************************/
135
136 footer {
137 background-color: #F5F5F5;
138 padding: 20px 0;
139 margin-top: 40px;
140 color: #999999;
141 text-align: center;
142 p {
143 margin: 8px 0;
144 }
145 }
146
147 /* typeahead **********************************************/
148
149 .twitter-typeahead {
150 width: 100%;
151 }
152
153 .tt-menu {
154 width: 100%;
155 background-color: #fff;
156 padding: 8px 0;
157 border: 1px solid #ccc;
158 border: 1px solid rgba(0, 0, 0, 0.2);
159 -webkit-border-radius: 8px;
160 -moz-border-radius: 8px;
161 border-radius: 8px;
162 -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
163 -moz-box-shadow: 0 5px 10px rgba(0,0,0,.2);
164 box-shadow: 0 5px 10px rgba(0,0,0,.2);
165 }
166
167 .tt-suggestion {
168 padding: 3px 20px;
169 &:hover {
170 cursor: pointer;
171 color: #fff;
172 background-color: #446e9b;
173 }
174 &.tt-cursor {
175 color: #fff;
176 background-color: #446e9b;
177 }
178 p {
179 margin: 0;
180 }
181 }