1
0
mirror of https://github.com/danbee/my-images synced 2025-03-04 08:49:05 +00:00

Basic form styles

This commit is contained in:
Daniel Barber 2018-09-12 22:12:51 -04:00
parent 6eb5268a16
commit f29e10ddbf
Signed by: danbarber
GPG Key ID: 931D8112E0103DD8
2 changed files with 19 additions and 0 deletions

View File

@ -1,3 +1,4 @@
@import "includes/forms";
@import "home";
@import "images";
@import "sessions";

View File

@ -0,0 +1,18 @@
input[type=text] {
border: 1px solid black;
border-radius: 0.15rem;
box-shadow: inset 0.15rem 0.15rem 0.25rem rgba(0, 0, 0, 0.25);
padding: 0.2rem 0.5rem 0.25rem;
}
button,
input[type=submit] {
background: #ddd;
border: 1px solid black;
border-radius: 0.15rem;
box-shadow: inset -0.15rem -0.15rem 0.25rem rgba(0, 0, 0, 0.25),
inset 0.15rem 0.15rem 0.25rem rgba(255, 255, 255, 0.75);
color: black;
font-weight: bold;
padding: 0.2rem 0.5rem 0.25rem;
}