mirror of
https://github.com/medialab-prado/datamad2017.git
synced 2025-06-07 14:01:29 +02:00
Initial commit
This commit is contained in:
parent
8e3b6da84f
commit
95607eea61
241 changed files with 14242 additions and 3 deletions
1
css/animate.min.css
vendored
Normal file
1
css/animate.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1
css/bootstrap-theme.css.map
Normal file
1
css/bootstrap-theme.css.map
Normal file
File diff suppressed because one or more lines are too long
5
css/bootstrap-theme.min.css
vendored
Normal file
5
css/bootstrap-theme.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1
css/bootstrap.css.map
Normal file
1
css/bootstrap.css.map
Normal file
File diff suppressed because one or more lines are too long
5
css/bootstrap.min.css
vendored
Normal file
5
css/bootstrap.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
2303
css/style.css
Normal file
2303
css/style.css
Normal file
File diff suppressed because it is too large
Load diff
1
css/style.min.css
vendored
Normal file
1
css/style.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
105
css/waves.css
Normal file
105
css/waves.css
Normal file
|
@ -0,0 +1,105 @@
|
|||
|
||||
/*!
|
||||
* Waves v0.1.0
|
||||
* https://publicis-indonesia.github.io/Waves/
|
||||
*
|
||||
* Copyright 2014 Publicis Metro Indonesia, PT. and other contributors
|
||||
* Released under the BSD license
|
||||
* https://github.com/publicis-indonesia/Waves/blob/master/LICENSE
|
||||
*/
|
||||
|
||||
.waves-element {
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
overflow: hidden;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
-webkit-transition: all .3s ease-out;
|
||||
-moz-transition: all .3s ease-out;
|
||||
-o-transition: all .3s ease-out;
|
||||
transition: all .3s ease-out;
|
||||
}
|
||||
|
||||
.waves-element .waves-ripple {
|
||||
position: absolute;
|
||||
border-radius: 100%;
|
||||
border-width:0px;
|
||||
border-style:solid;
|
||||
width:0px;
|
||||
height:0px;
|
||||
opacity:0;
|
||||
border-color: rgba(0, 0, 0, 0.2);
|
||||
-webkit-transition: all 0.5s ease-out;
|
||||
-moz-transition: all 0.5s ease-out;
|
||||
-0-transition: all 0.5s ease-out;
|
||||
transition: all 0.5s ease-out;
|
||||
}
|
||||
|
||||
.waves-element.waves-light .waves-ripple {
|
||||
border-color: rgba(255, 255, 255, 0.2);
|
||||
}
|
||||
|
||||
.waves-notransition {
|
||||
-webkit-transition: none !important;
|
||||
transition: none !important;
|
||||
}
|
||||
|
||||
.waves-button,
|
||||
.waves-icon {
|
||||
-webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
|
||||
}
|
||||
|
||||
.waves-button {
|
||||
padding:10px 15px;
|
||||
border-radius:4px;
|
||||
}
|
||||
|
||||
|
||||
.waves-button a,
|
||||
.waves-button a:hover,
|
||||
.waves-button a:visited,
|
||||
.waves-button a:link,
|
||||
.waves-button button,
|
||||
.waves-button input[type="submit"],
|
||||
.waves-button input[type="button"] {
|
||||
margin: 0;
|
||||
padding:0;
|
||||
white-space: nowrap;
|
||||
vertical-align: middle;
|
||||
cursor: pointer;
|
||||
border:none;
|
||||
outline:none;
|
||||
background:transparent;
|
||||
color: inherit;
|
||||
font-size:14px;
|
||||
text-align: center;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
.waves-icon {
|
||||
text-align:center;
|
||||
width:2.5em;
|
||||
height:2.5em;
|
||||
line-height:2.5em;
|
||||
border-radius:20px;
|
||||
}
|
||||
|
||||
|
||||
.waves-will-raise {
|
||||
-webkit-mask-image:none;
|
||||
-webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
|
||||
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
|
||||
}
|
||||
|
||||
.waves-will-raise:active {
|
||||
-webkit-box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.26);
|
||||
box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.26);
|
||||
}
|
||||
|
||||
.waves-block {
|
||||
display:block;
|
||||
}
|
||||
|
8
css/waves.min.css
vendored
Normal file
8
css/waves.min.css
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
/*!
|
||||
* Waves v0.1.0
|
||||
* https://publicis-indonesia.github.io/Waves/
|
||||
*
|
||||
* Copyright 2014 Publicis Metro Indonesia, PT. and other contributors
|
||||
* Released under the BSD license
|
||||
* https://github.com/publicis-indonesia/Waves/blob/master/LICENSE
|
||||
*/.waves-element{position:relative;cursor:pointer;display:inline-block;overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-transition:all .3s ease-out;-moz-transition:all .3s ease-out;-o-transition:all .3s ease-out;transition:all .3s ease-out}.waves-element .waves-ripple{position:absolute;border-radius:100%;border-width:0;border-style:solid;width:0;height:0;opacity:0;border-color:rgba(0,0,0,0.2);-webkit-transition:all .5s ease-out;-moz-transition:all .5s ease-out;-0-transition:all .5s ease-out;transition:all .5s ease-out}.waves-element.waves-light .waves-ripple{border-color:rgba(255,255,255,0.2)}.waves-notransition{-webkit-transition:none !important;transition:none !important}.waves-button,.waves-icon{-webkit-mask-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC)}.waves-button{padding:10px 15px;border-radius:4px}.waves-button a,.waves-button a:hover,.waves-button a:visited,.waves-button a:link,.waves-button button,.waves-button input[type="submit"],.waves-button input[type="button"]{margin:0;padding:0;white-space:nowrap;vertical-align:middle;cursor:pointer;border:0;outline:0;background:transparent;color:inherit;font-size:14px;text-align:center;text-decoration:none}.waves-icon{text-align:center;width:2.5em;height:2.5em;line-height:2.5em;border-radius:20px}.waves-will-raise{-webkit-mask-image:none;-webkit-box-shadow:0 2px 5px 0 rgba(0,0,0,0.26);box-shadow:0 2px 5px 0 rgba(0,0,0,0.26)}.waves-will-raise:active{-webkit-box-shadow:0 7px 10px 0 rgba(0,0,0,0.26);box-shadow:0 7px 10px 0 rgba(0,0,0,0.26)}.waves-block{display:block}
|
Loading…
Add table
Add a link
Reference in a new issue