mirror of
https://github.com/aquatix/digimarks.git
synced 2025-12-06 22:05:09 +01:00
Adding/editing bookmarks
This commit is contained in:
28
static/css/digimarks.css
Normal file
28
static/css/digimarks.css
Normal file
@@ -0,0 +1,28 @@
|
||||
|
||||
/* label color */
|
||||
.input-field label {
|
||||
color: #FFF;
|
||||
}
|
||||
/* label focus color */
|
||||
.input-field input[type=text]:focus + label {
|
||||
color: #FFF;
|
||||
}
|
||||
/* label underline focus color */
|
||||
.input-field input[type=text]:focus {
|
||||
border-bottom: 1px solid #FFF;
|
||||
box-shadow: 0 1px 0 0 #FFF;
|
||||
}
|
||||
/* valid color */
|
||||
.input-field input[type=text].valid {
|
||||
border-bottom: 1px solid #FFF;
|
||||
box-shadow: 0 1px 0 0 #FFF;
|
||||
}
|
||||
/* invalid color */
|
||||
.input-field input[type=text].invalid {
|
||||
border-bottom: 1px solid #FFF;
|
||||
box-shadow: 0 1px 0 0 #FFF;
|
||||
}
|
||||
/* icon prefix focus color */
|
||||
.input-field .prefix.active {
|
||||
color: #FFF;
|
||||
}
|
||||
Reference in New Issue
Block a user