style the text inside the upload-area
This commit is contained in:
parent
399236f6fe
commit
364b196293
1 changed files with 5 additions and 3 deletions
|
@ -16,7 +16,7 @@
|
|||
--grey: rgb(207, 216, 220);
|
||||
--shadow: rgba(0, 0, 0, 0.3);
|
||||
--border: rgb(45, 40, 22);
|
||||
--border-hover: rgb(184, 150, 48);
|
||||
--area-hover: rgb(184, 150, 48);
|
||||
--font-size: 17px;
|
||||
}
|
||||
}
|
||||
|
@ -31,7 +31,7 @@
|
|||
--grey: rgb(55, 71, 79);
|
||||
--shadow: rgba(125, 109, 60, 0.3);
|
||||
--border: rgb(213, 202, 168);
|
||||
--border-hover: rgb(223, 193, 99);
|
||||
--area-hover: rgb(223, 193, 99);
|
||||
--font-size: 17px;
|
||||
}
|
||||
}
|
||||
|
@ -99,7 +99,9 @@ main {
|
|||
|
||||
.upload-area:hover,
|
||||
.upload-area-hovered {
|
||||
border: 2px dashed var(--border-hover);
|
||||
border: 2px dashed var(--area-hover);
|
||||
text-decoration: underline var(--area-hover) 2px;
|
||||
text-underline-position: under;
|
||||
}
|
||||
|
||||
.desc-area {
|
||||
|
|
Reference in a new issue