forked from projects/fipamo
ro
8d3af5b6e1
Added the folder containg Fipamo markdown files to set up a basic route for the start of the dashboard and quick test to make sure the file paths can be read also added CSS files that will style the new template system, which is currenlty in twig but will be convereted to blade
55 lines
913 B
CSS
55 lines
913 B
CSS
a {
|
|
color: var(--primary);
|
|
}
|
|
|
|
p {
|
|
background: var(--tertiary);
|
|
color: var(--primary);
|
|
padding: 5px;
|
|
display: block;
|
|
border-radius: 5px;
|
|
text-align: left;
|
|
}
|
|
|
|
input[type="email"],
|
|
input[type="password"],
|
|
input[type="text"] {
|
|
border: 0;
|
|
border-radius: 5px;
|
|
font: 18px var(--base-type);
|
|
display: inline-block;
|
|
background: var(--white);
|
|
color: var(--primary);
|
|
}
|
|
|
|
textarea {
|
|
border: 0;
|
|
border-radius: 3px;
|
|
color: var(--primary);
|
|
background: var(--white);
|
|
}
|
|
|
|
button,
|
|
input[type="submit"] {
|
|
background: var(--highlight);
|
|
color: var(--primary);
|
|
font: 20px var(--base-type);
|
|
border-radius: 5px;
|
|
position: relative;
|
|
cursor: pointer;
|
|
border: 0;
|
|
transition: all 0.3s linear;
|
|
}
|
|
|
|
select {
|
|
font: 14px var(--base-type);
|
|
border: 1px solid var(--secondary);
|
|
appearance: none;
|
|
color: var(--primary);
|
|
}
|
|
|
|
::placeholder {
|
|
font: 25px var(--base-type);
|
|
color: var(--black);
|
|
}
|