diff --git a/static/css/skeleton.css b/static/css/skeleton.css index 2a370ee..5eee2cb 100644 --- a/static/css/skeleton.css +++ b/static/css/skeleton.css @@ -263,6 +263,7 @@ input[type="text"], input[type="tel"], input[type="url"], input[type="password"], +input[type="time"], textarea, select { height: 38px; @@ -280,6 +281,7 @@ input[type="text"], input[type="tel"], input[type="url"], input[type="password"], +input[type="time"], textarea { -webkit-appearance: none; -moz-appearance: none; @@ -295,6 +297,7 @@ input[type="text"]:focus, input[type="tel"]:focus, input[type="url"]:focus, input[type="password"]:focus, +input[type="time"]:focus, textarea:focus, select:focus { border: 1px solid #222; @@ -461,6 +464,11 @@ there. justify-content: end; } +.content-align-bottom { + display: flex; + align-items: flex-end; +} + .font-base { font-size: 1.2rem !important; } @@ -490,6 +498,14 @@ there. margin-bottom: 3rem; } +.mr-2 { + margin-right: 2rem; +} + +.mt-1 { + margin-top: 1rem; +} + .w-full { width: 100%; } @@ -522,6 +538,22 @@ there. color: #fff; } +.text-red { + color: red; +} + .text-center { text-align: center; } + +.text-right { + text-align: right; +} + +.text-left { + text-align: left; +} + +.data-block[data-needed="true"] { + border: 3px solid red; +} diff --git a/templates/base.html.tera b/templates/base.html.tera index 42760ed..418d871 100644 --- a/templates/base.html.tera +++ b/templates/base.html.tera @@ -35,8 +35,8 @@