mirror of
https://github.com/aquatix/digimarks.git
synced 2025-12-07 00:15:10 +01:00
Indentation and styling fixes, comments
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
/**
|
||||
* digimarks styling
|
||||
*/
|
||||
|
||||
/** Navigation **/
|
||||
|
||||
nav .button-collapse
|
||||
{
|
||||
@@ -11,34 +16,43 @@ nav .button-collapse i
|
||||
font-size: 2.7rem;
|
||||
}
|
||||
|
||||
/** Form input fields **/
|
||||
|
||||
/* label color */
|
||||
.input-field label {
|
||||
.input-field label
|
||||
{
|
||||
color: #000;
|
||||
}
|
||||
/* label focus color */
|
||||
.input-field input[type=text]:focus + label {
|
||||
.input-field input[type=text]:focus + label
|
||||
{
|
||||
color: #000;
|
||||
}
|
||||
/* label underline focus color */
|
||||
.input-field input[type=text]:focus {
|
||||
.input-field input[type=text]:focus
|
||||
{
|
||||
border-bottom: 1px solid #000;
|
||||
box-shadow: 0 1px 0 0 #000;
|
||||
}
|
||||
/* valid color */
|
||||
.input-field input[type=text].valid {
|
||||
.input-field input[type=text].valid
|
||||
{
|
||||
border-bottom: 1px solid #000;
|
||||
box-shadow: 0 1px 0 0 #000;
|
||||
}
|
||||
/* invalid color */
|
||||
.input-field input[type=text].invalid {
|
||||
.input-field input[type=text].invalid
|
||||
{
|
||||
border-bottom: 1px solid #000;
|
||||
box-shadow: 0 1px 0 0 #000;
|
||||
}
|
||||
/* icon prefix focus color */
|
||||
.input-field .prefix.active {
|
||||
.input-field .prefix.active
|
||||
{
|
||||
color: #000;
|
||||
}
|
||||
|
||||
/** Cards and tags **/
|
||||
|
||||
/* Card title anchor colour */
|
||||
.white-text .card-title a,
|
||||
|
||||
Reference in New Issue
Block a user