mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 23:16:52 +08:00
Cleaned up examples folder
This commit is contained in:
71
examples/demos/toderp2/css/app.css
Normal file
71
examples/demos/toderp2/css/app.css
Normal file
@ -0,0 +1,71 @@
|
||||
.view {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
.ionic-logo {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
margin-top: -128px;
|
||||
margin-left: -128px;
|
||||
width: 256px;
|
||||
}
|
||||
.toderp-logo {
|
||||
background: url('../img/toderp-logo.svg') no-repeat transparent;
|
||||
background-size: contain;
|
||||
width: 250px;
|
||||
height: 100px;
|
||||
margin: 40px auto;
|
||||
}
|
||||
.toderp-small-logo {
|
||||
background: url('../img/logo-header.png') no-repeat transparent;
|
||||
background-size: 76px 21px;
|
||||
background-position: 50%;
|
||||
box-flex: 1;
|
||||
-webkit-box-flex: 1;
|
||||
}
|
||||
#splash-view {
|
||||
opacity: 1;
|
||||
}
|
||||
#splash-view .ionic-logo {
|
||||
}
|
||||
|
||||
#splash-view, #signup-view {
|
||||
background: url('../img/splash.png') no-repeat transparent;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
#signup-bottom {
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
}
|
||||
#signup-bottom .button {
|
||||
color: #4a87ee;
|
||||
}
|
||||
|
||||
/* Tasks view */
|
||||
|
||||
#task-list {
|
||||
}
|
||||
#task-list .completed {
|
||||
text-decoration: line-through;
|
||||
}
|
||||
|
||||
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
|
||||
#signup-view {
|
||||
background: url('../img/splash@2x.png') no-repeat transparent;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
.toderp-small-logo {
|
||||
background-image: url('../img/logo-header@2x.png');
|
||||
background-size: 76px 21px;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user