Skip to content

Commit 9d0e50d

Browse files
committed
added margings for examples
1 parent c5976ec commit 9d0e50d

File tree

1 file changed

+62
-25
lines changed
  • src/main/resources/public/assets

1 file changed

+62
-25
lines changed

src/main/resources/public/assets/css.css

Lines changed: 62 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ body {
66
#index-page h4 {
77
z-index: -100;
88
}
9+
910
#index-page h4::before {
1011
z-index: -100;
1112
display: block;
@@ -16,16 +17,19 @@ body {
1617
pointer-events: none;
1718
}
1819

19-
.jumbotron {
20+
#content {
21+
margin: 0 20px 0 20px;
22+
}
2023

24+
.jumbotron {
2125
background-image: url(/assets/banner-code.png) !important;
2226
background-position: right;
2327
min-height: 500px;
2428
padding-top: 0 !important;
2529
padding-bottom: 0 !important;
2630
padding-left: 30px !important;
2731
padding-right: 30px !important;
28-
margin: 0 !important;
32+
margin: -24px !important;
2933
color: white;
3034
}
3135

@@ -37,24 +41,30 @@ body {
3741
.btn-docu {
3842

3943
background-color: #00BAA1;
40-
color:#FFF;
44+
color: #FFF;
4145
border-color: #121517;
4246
}
4347

44-
.btn-docu:hover, .btn-docu:focus, .btn-docu:active, .btn-docu.active, .open .dropdown-toggle.btn-docu {
48+
.btn-docu:hover,
49+
.btn-docu:focus,
50+
.btn-docu:active,
51+
.btn-docu.active,
52+
.open .dropdown-toggle.btn-docu {
4553
background-color: #02d6ba;
46-
color:#FFF;
54+
color: #FFF;
4755
border-color: #050607;
4856
}
4957

5058
hr.styled {
51-
overflow: visible; /* For IE */
59+
overflow: visible;
60+
/* For IE */
5261
padding: 0;
5362
border: none;
5463
border-top: medium double 0;
5564
color: #000;
5665
text-align: center;
5766
}
67+
5868
hr.styled:after {
5969
content: "§";
6070
display: inline-block;
@@ -65,23 +75,37 @@ hr.styled:after {
6575
background: white;
6676
}
6777

68-
.feedback, .hidden {display: none;}
69-
span.feedback {margin-left:2em;}
78+
.feedback,
79+
.hidden {
80+
display: none;
81+
}
82+
83+
span.feedback {
84+
margin-left: 2em;
85+
}
86+
87+
form.eg {
88+
max-width: 30em;
89+
}
7090

71-
form.eg {max-width: 30em;}
72-
form.eg label {font-weight: 550;}
91+
form.eg label {
92+
font-weight: 550;
93+
}
7394

7495
pre.json-display {
7596
background-color: ghostwhite;
7697
border: 1px solid silver;
7798
padding: 10px 20px;
7899
}
100+
79101
.json-key {
80102
color: brown;
81103
}
104+
82105
.json-value {
83106
color: navy;
84107
}
108+
85109
.json-string {
86110
color: olive;
87111
}
@@ -98,7 +122,7 @@ pre.json-display {
98122
font-size: 10px;
99123
}
100124

101-
.spinner > div {
125+
.spinner>div {
102126
background-color: blueviolet;
103127
height: 100%;
104128
width: 6px;
@@ -129,23 +153,36 @@ pre.json-display {
129153
}
130154

131155
@-webkit-keyframes sk-stretchdelay {
132-
0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
133-
20% { -webkit-transform: scaleY(1.0) }
156+
157+
0%,
158+
40%,
159+
100% {
160+
-webkit-transform: scaleY(0.4)
161+
}
162+
163+
20% {
164+
-webkit-transform: scaleY(1.0)
165+
}
134166
}
135167

136168
@keyframes sk-stretchdelay {
137-
0%, 40%, 100% {
138-
transform: scaleY(0.4);
139-
-webkit-transform: scaleY(0.4);
140-
} 20% {
141-
transform: scaleY(1.0);
142-
-webkit-transform: scaleY(1.0);
143-
}
144-
}
145-
146-
.your-class div{
147-
float:left;
148-
margin-left: 10px;
169+
170+
0%,
171+
40%,
172+
100% {
173+
transform: scaleY(0.4);
174+
-webkit-transform: scaleY(0.4);
175+
}
176+
177+
20% {
178+
transform: scaleY(1.0);
179+
-webkit-transform: scaleY(1.0);
180+
}
181+
}
182+
183+
.your-class div {
184+
float: left;
185+
margin-left: 10px;
149186
}
150187

151188
.has-search .form-control {

0 commit comments

Comments
 (0)