0
0
mirror of https://github.com/Doodle3D/doodle3d-connect.git synced 2024-06-13 12:51:22 +02:00
doodle3d-connect/less/styles.less

61 lines
895 B
Plaintext
Raw Normal View History

2014-05-01 11:37:25 +02:00
body.ui-mobile-viewport {
margin: 0 auto;
max-width: 1024px;
2014-04-24 12:46:26 +02:00
}
#logo {
2014-04-29 00:43:10 +02:00
text-align: center;
display: block;
}
#logo img{
2014-04-24 12:46:26 +02:00
margin: 10px 5px 5px 5px;
max-width: 200px;
}
2014-05-01 11:37:25 +02:00
#slogan {
text-align: center;
2014-04-24 12:46:26 +02:00
}
2014-05-01 11:37:25 +02:00
.ui-content {
ul {
padding: 0 0 0 1em;
}
ul.ui-listview {
padding: 0;
}
.intro {
margin: 0 0 2em 0;
}
img {
max-width: 100%;
}
}
2014-04-24 12:46:26 +02:00
2014-04-25 16:24:16 +02:00
#action {
margin: 0 -1em;
padding: 1em;
color: #fff;
text-shadow: 0px 1px 0px #999;
2014-05-01 11:37:25 +02:00
&.error {
2014-04-25 16:24:16 +02:00
background: #EB313C;
text-shadow: 0px 1px 0px #333;
2014-05-01 11:37:25 +02:00
}
&.warning {
2014-04-25 16:24:16 +02:00
background: #E9A86E;
}
2014-05-01 11:37:25 +02:00
&.notice {
background: #93CAF4;
2014-04-24 12:46:26 +02:00
}
2014-05-01 11:37:25 +02:00
&.info {
background: #97DD8A;
}
2014-05-07 15:18:27 +02:00
}
/* hack to fadein loader widget (will break normal loader usage) */
.ui-loader {
display: block;
opacity: 0;
transition: opacity 0.5s linear;
}
.ui-loading .ui-loader.fadeIn {
opacity: 0.18;
2014-05-01 11:37:25 +02:00
}