Skip to content

Commit 65ef51b

Browse files
committed
editions: Archive 2020 edition
Archive the latest CDL edition: 2020: - Create `editions/2020/` directory. - Copy `assets/` in `editions/2020/`. - Copy `index.html` in `editions/2020/`. Signed-off-by: Razvan Deaconescu <[email protected]>
1 parent 0931869 commit 65ef51b

File tree

105 files changed

+15640
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

105 files changed

+15640
-0
lines changed

editions/2020/assets/bootstrap/css/bootstrap-theme.css

+476
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

editions/2020/assets/bootstrap/css/bootstrap-theme.css.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

editions/2020/assets/bootstrap/css/bootstrap-theme.min.css

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

editions/2020/assets/bootstrap/css/bootstrap.css

+6,566
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

editions/2020/assets/bootstrap/css/bootstrap.css.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

editions/2020/assets/bootstrap/css/bootstrap.min.css

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.

editions/2020/assets/bootstrap/fonts/glyphicons-halflings-regular.svg

+288
Loading
Binary file not shown.
Binary file not shown.
Binary file not shown.

editions/2020/assets/bootstrap/js/bootstrap.js

+2,306
Large diffs are not rendered by default.

editions/2020/assets/bootstrap/js/bootstrap.min.js

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment.
2+
require('../../js/transition.js')
3+
require('../../js/alert.js')
4+
require('../../js/button.js')
5+
require('../../js/carousel.js')
6+
require('../../js/collapse.js')
7+
require('../../js/dropdown.js')
8+
require('../../js/modal.js')
9+
require('../../js/tooltip.js')
10+
require('../../js/popover.js')
11+
require('../../js/scrollspy.js')
12+
require('../../js/tab.js')
13+
require('../../js/affix.js')

editions/2020/assets/css/custom.css

+194
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,194 @@
1+
/*-----------------------
2+
Main elements
3+
-----------------------*/
4+
a, a:hover, a:link, a:visited {
5+
color: #FF9800;
6+
text-decoration: none;
7+
}
8+
9+
/*-----------------------
10+
Main menu & content
11+
-----------------------*/
12+
#menu #logo img {
13+
width: 180px;
14+
height: 70px;
15+
margin-top: -5px;
16+
margin-left: 95px;
17+
}
18+
19+
#content .section-title {
20+
color: #FF9800;
21+
}
22+
23+
/*------------------------
24+
Box with picture
25+
------------------------*/
26+
#content .picture-box {
27+
background: url(../images/rosedu_background.png) 50% 0 no-repeat fixed;
28+
background-position: center;
29+
background-size: cover;
30+
margin-top: 1%;
31+
}
32+
33+
#content .picture-box .picture-canvas {
34+
background: rgba(0,0,0,0.5);
35+
width: 100%;
36+
height: 100%;
37+
}
38+
39+
/*------------------------
40+
Form box
41+
------------------------*/
42+
#content .form-box {
43+
background: url(../images/creative_common/apply.jpeg) 50% 0 no-repeat fixed;
44+
background-position: center;
45+
background-size: cover;
46+
}
47+
48+
#content .form-box .extra_info {
49+
font-size: 12px;
50+
color: #e7e7e7;
51+
line-height: 30px;
52+
font-style: italic;
53+
}
54+
55+
/*------------------------
56+
Grid
57+
------------------------*/
58+
#content .grid {
59+
display: block;
60+
margin: 1em 0;
61+
padding: 0;
62+
list-style: none;
63+
font-size: 0.95em;
64+
}
65+
66+
/*------------------------
67+
Slide-in effect
68+
------------------------*/
69+
.come-in {
70+
-webkit-transform: translateY(150px);
71+
-webkit-animation: come-in 1s ease forwards;
72+
-webkit-animation-delay: 0.2s;
73+
transform: translateY(150px);
74+
animation: come-in 1s ease forwards;
75+
animation-delay: 0.2s;
76+
}
77+
78+
.come-in:nth-child(odd) {
79+
-webkit-animation-duration: 0.6s; /* So they look staggered */
80+
}
81+
82+
.already-visible {
83+
-webkit-transform: translateY(0);
84+
-webkit-animation: none;
85+
transform: translateY(0);
86+
animation: none;
87+
}
88+
89+
@-webkit-keyframes come-in {
90+
to {
91+
-webkit-transform: translateY(0);
92+
}
93+
}
94+
95+
@keyframes come-in {
96+
to {
97+
transform: translateY(0);
98+
}
99+
}
100+
101+
/*------------------------
102+
Custom padding
103+
------------------------*/
104+
/* IPhone 3GS/4, smaller phones */
105+
@media only screen and (max-height: 480px) {
106+
#content .picture-box .picture-canvas {
107+
padding-bottom: 0%;
108+
padding-top: 0%;
109+
height: 360px;
110+
}
111+
#content .picture-box .container {
112+
padding-top: 60px;
113+
}
114+
}
115+
116+
/* IPhone 5, LG Optimus 2X/3D/Black, S/S2/W, Lumia */
117+
@media only screen and (min-height: 481px) {
118+
#content .picture-box .picture-canvas {
119+
padding-bottom: 5%;
120+
padding-top: 0%;
121+
margin-bottom: 10%;
122+
height: 420px;
123+
}
124+
}
125+
126+
/* Tablets */
127+
@media only screen and (min-height: 600px) {
128+
#content .picture-box .picture-canvas {
129+
padding-bottom: 5%;
130+
padding-top: 5%;
131+
height: 100%;
132+
}
133+
}
134+
135+
/* Phones: S3/S4, Note 2/3, LG Optimus G, Blackberry Z10/Z30, *
136+
* IPhone 6, Xperia Z1, Nokia C5/C6/N97/N8, etc. */
137+
@media only screen and (min-height: 640px) {
138+
#content .picture-box .picture-canvas {
139+
padding-bottom: 12.5%;
140+
padding-top: 12.5%;
141+
}
142+
}
143+
144+
/* IPhone 6 plus, LG Optimus LTE, LG Optimus 4X HD */
145+
@media only screen and (min-height: 720px) {
146+
#content .picture-box .picture-canvas {
147+
padding-bottom: 10%;
148+
padding-top: 10%;
149+
}
150+
#content .picture-box .container {
151+
margin-top: 15%;
152+
}
153+
}
154+
155+
/* IPad 1/2/Mini */
156+
@media only screen and (min-height: 768px) {
157+
#content .picture-box .picture-canvas {
158+
padding-bottom: 8%;
159+
padding-top: 2%;
160+
}
161+
#content .picture-box .container {
162+
margin-top: 15%;
163+
}
164+
}
165+
166+
/* Generic notebooks and bigger tablets */
167+
@media only screen and (min-height: 800px) {
168+
#content .picture-box .picture-canvas {
169+
padding-bottom: 3%;
170+
padding-top: 5%;
171+
}
172+
}
173+
@media only screen and (min-height: 850px) {
174+
#content .picture-box .picture-canvas {
175+
padding-bottom: 20%;
176+
padding-top: 25%;
177+
}
178+
}
179+
180+
/* Notebooks with touch/HiDPI */
181+
@media only screen and (min-height: 900px) {
182+
#content .picture-box .picture-canvas {
183+
padding-bottom: 6%;
184+
padding-top: 7%;
185+
}
186+
}
187+
188+
/* Large Devices, Wide Screens */
189+
@media only screen and (min-height: 1200px) {
190+
#content .picture-box .picture-canvas {
191+
padding-bottom: 13%;
192+
padding-top: 13%;
193+
}
194+
}

0 commit comments

Comments
 (0)