mirror of
https://github.com/arnaucube/miksi-app.git
synced 2026-02-07 03:36:50 +01:00
Initial UI layout structure
This commit is contained in:
20
css/dark-theme.css
Normal file
20
css/dark-theme.css
Normal file
@@ -0,0 +1,20 @@
|
||||
.dark-theme {
|
||||
background: #232729;
|
||||
color: #d9d9d9;
|
||||
}
|
||||
.dark-theme
|
||||
.card,
|
||||
.list-group-item,
|
||||
input,
|
||||
.nav-link {
|
||||
background: none!important;
|
||||
border-color: #3b4145;
|
||||
}
|
||||
.dark-theme input {
|
||||
color: #FF00B9;
|
||||
}
|
||||
.dark-theme input:focus {
|
||||
color: #FF00B9;
|
||||
box-shadow: 0px 0px 5px #FF00B9!important;
|
||||
border: none;
|
||||
}
|
||||
111
css/style.css
Normal file
111
css/style.css
Normal file
@@ -0,0 +1,111 @@
|
||||
/*
|
||||
main color: #FF00B9
|
||||
*/
|
||||
|
||||
.mainBox {
|
||||
max-width: 900px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
a, a:link, a:visited, a:hover {
|
||||
color: #FF00B9!important;
|
||||
text-decoration: none!important;
|
||||
}
|
||||
a:hover {
|
||||
color: #FF00B9!important;
|
||||
text-decoration: none!important;
|
||||
}
|
||||
.btn {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
hr {
|
||||
height: 2px!important;
|
||||
|
||||
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#cc66ff+0,FF00B9+98 */
|
||||
background: #cc66ff; /* Old browsers */
|
||||
background: -moz-linear-gradient(left, #cc66ff 0%, #FF00B9 98%); /* FF3.6-15 */
|
||||
background: -webkit-linear-gradient(left, #cc66ff 0%,#FF00B9 98%); /* Chrome10-25,Safari5.1-6 */
|
||||
background: linear-gradient(to right, #cc66ff 0%,#FF00B9 98%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc66ff', endColorstr='#FF00B9',GradientType=1 ); /* IE6-9 */
|
||||
}
|
||||
|
||||
.color_primary {
|
||||
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#cc66ff+0,FF00B9+98 */
|
||||
background: #cc66ff; /* Old browsers */
|
||||
background: -moz-linear-gradient(left, #cc66ff 0%, #FF00B9 98%); /* FF3.6-15 */
|
||||
background: -webkit-linear-gradient(left, #cc66ff 0%,#FF00B9 98%); /* Chrome10-25,Safari5.1-6 */
|
||||
background: linear-gradient(to right, #cc66ff 0%,#FF00B9 98%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc66ff', endColorstr='#FF00B9',GradientType=1 ); /* IE6-9 */
|
||||
|
||||
color: #000000!important;
|
||||
font-weight: bold!important;
|
||||
}
|
||||
|
||||
.color_primary-o {
|
||||
border: 1px solid #FF00B9!important;
|
||||
color: #FF00B9!important;
|
||||
background: rgba(0,0,0,0)!important;
|
||||
|
||||
}
|
||||
|
||||
|
||||
.color_input {
|
||||
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#cc66ff+0,FF00B9+98 */
|
||||
background: #78a9ac; /* Old browsers */
|
||||
background: -moz-linear-gradient(left, #78a9ac 0%, #78a9ac 98%); /* FF3.6-15 */
|
||||
background: -webkit-linear-gradient(left, #78a9ac 0%,#78a9ac 98%); /* Chrome10-25,Safari5.1-6 */
|
||||
background: linear-gradient(to right, #78a9ac 0%,#78a9ac 98%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#78a9ac', endColorstr='#78a9ac',GradientType=1 ); /* IE6-9 */
|
||||
|
||||
color: #000000!important;
|
||||
}
|
||||
|
||||
.invisible {
|
||||
display: none!important;
|
||||
}
|
||||
|
||||
.disable-selection {
|
||||
-moz-user-select: none; /* Firefox */
|
||||
-ms-user-select: none; /* Internet Explorer */
|
||||
-khtml-user-select: none; /* KHTML browsers (e.g. Konqueror) */
|
||||
-webkit-user-select: none; /* Chrome, Safari, and Opera */
|
||||
-webkit-touch-callout: none; /* Disable Android and iOS callouts*/
|
||||
}
|
||||
|
||||
#qrcode > img {
|
||||
border: 8px solid #ffffff;
|
||||
}
|
||||
|
||||
.upload-btn-wrapper {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.upload-btn-wrapper input[type=file] {
|
||||
font-size: 100px;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.balanceBox {
|
||||
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#cc66ff+0,FF00B9+98 */
|
||||
background: #cc66ff; /* Old browsers */
|
||||
background: -moz-linear-gradient(left, #cc66ff 0%, #FF00B9 98%); /* FF3.6-15 */
|
||||
background: -webkit-linear-gradient(left, #cc66ff 0%,#FF00B9 98%); /* Chrome10-25,Safari5.1-6 */
|
||||
background: linear-gradient(to right, #cc66ff 0%,#FF00B9 98%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc66ff', endColorstr='#FF00B9',GradientType=1 ); /* IE6-9 */
|
||||
|
||||
color: #ffffff!important;
|
||||
text-align: center;
|
||||
|
||||
border-radius: 5px;
|
||||
padding: 10px;
|
||||
/* box-shadow: 0px 0px 30px grey; */
|
||||
}
|
||||
.balanceBox > h3 {
|
||||
font-weight: 900;
|
||||
}
|
||||
35
css/utils.css
Normal file
35
css/utils.css
Normal file
@@ -0,0 +1,35 @@
|
||||
|
||||
/* switch button */
|
||||
.onoffswitch {
|
||||
position: relative; width: 46px;
|
||||
-webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
|
||||
}
|
||||
.onoffswitch-checkbox {
|
||||
display: none;
|
||||
}
|
||||
.onoffswitch-label {
|
||||
display: block; overflow: hidden; cursor: pointer;
|
||||
height: 20px; padding: 0; line-height: 20px;
|
||||
border: 2px solid #FFFFFF; border-radius: 20px;
|
||||
background-color: #9E9E9E;
|
||||
transition: background-color 0.3s ease-in;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.onoffswitch-label:before {
|
||||
content: "";
|
||||
display: block; width: 20px; margin: 0px;
|
||||
background: #FFFFFF;
|
||||
position: absolute; top: 0; bottom: 0;
|
||||
right: 24px;
|
||||
border: 2px solid #FFFFFF; border-radius: 20px;
|
||||
transition: all 0.3s ease-in 0s;
|
||||
}
|
||||
.onoffswitch-checkbox:checked + .onoffswitch-label {
|
||||
background-color: #FF00B9;
|
||||
}
|
||||
.onoffswitch-checkbox:checked + .onoffswitch-label, .onoffswitch-checkbox:checked + .onoffswitch-label:before {
|
||||
border-color: #FF00B9;
|
||||
}
|
||||
.onoffswitch-checkbox:checked + .onoffswitch-label:before {
|
||||
right: 0px;
|
||||
}
|
||||
Reference in New Issue
Block a user