[mod] style
This commit is contained in:
parent
2d8c5fe1f0
commit
17e45e9139
1 changed files with 28 additions and 6 deletions
|
@ -1,11 +1,11 @@
|
||||||
html {
|
html {
|
||||||
background-color: #111;
|
background-color: hsl(0, 0%, 12.5%);
|
||||||
color: #FFF;
|
color: hsl(0, 0%, 100%);
|
||||||
font-family: sans-serif;
|
font-family: sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
header {
|
header {
|
||||||
background-color: #222;
|
background-color: hsl(0, 0%, 25%);
|
||||||
/*
|
/*
|
||||||
border-bottom: 2px solid #888;
|
border-bottom: 2px solid #888;
|
||||||
padding-bottom: 16px;
|
padding-bottom: 16px;
|
||||||
|
@ -37,6 +37,27 @@ a:hover {
|
||||||
transition: 1s ease color;
|
transition: 1s ease color;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
input,select
|
||||||
|
{
|
||||||
|
padding: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
button
|
||||||
|
{
|
||||||
|
padding: 8px;
|
||||||
|
text-transform: uppercase;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
input,select,button
|
||||||
|
{
|
||||||
|
background-color: hsl(0, 0%, 0%);
|
||||||
|
color: hsl(0, 0%, 100%);
|
||||||
|
border: 1px solid hsl(0, 0%, 75%);
|
||||||
|
margin: 4px;
|
||||||
|
border-radius: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
.calendar {
|
.calendar {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
|
@ -74,7 +95,7 @@ a:hover {
|
||||||
}
|
}
|
||||||
|
|
||||||
.calendar-cell {
|
.calendar-cell {
|
||||||
border: 1px solid #888;
|
border: 1px solid hsl(0,0%,37.5%);
|
||||||
padding: 8px;
|
padding: 8px;
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
}
|
}
|
||||||
|
@ -95,7 +116,7 @@ a:hover {
|
||||||
}
|
}
|
||||||
|
|
||||||
.calendar-cell-today {
|
.calendar-cell-today {
|
||||||
outline: 4px solid #FFF;
|
outline: 2px solid hsl(0, 0%, 100%);
|
||||||
}
|
}
|
||||||
|
|
||||||
.calendar-day {
|
.calendar-day {
|
||||||
|
@ -161,5 +182,6 @@ a:hover {
|
||||||
}
|
}
|
||||||
|
|
||||||
#events_controls {
|
#events_controls {
|
||||||
margin-bottom: 8px;
|
margin-bottom: 12px;
|
||||||
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue