repos
/ timestrap-django master

timestrap-django

mirror archived upstream

Time tracking you can host anywhere, built on Django. Full export support in multiple formats and easily extensible.

djangodockerhandcodedpythonself-hostedtime-trackingtimetracker

763 B · 47 lines · CSS Raw History
 1#registration {
 2  min-height: 100vh;
 3  display: flex;
 4  flex-direction: column;
 5  justify-content: center;
 6  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/static/imgs/background.jpg');
 7  background-size: cover;
 8  background-position: center center;
 9}
10
11.registration-wrapper {
12  max-width: 400px;
13  margin: 0 auto;
14  background-color: #fff;
15}
16
17.registration-wrapper .bg-light {
18  border-top: 1px solid #eaeaea;
19}
20
21.btn,
22label {
23  font-size: .7em;
24  line-height: 1.8em;
25  letter-spacing: 1px;
26  font-weight: bold;
27  text-transform: uppercase;
28}
29
30@keyframes fade-in {
31  from {
32    opacity: 0;
33  }
34
35  to {
36    opacity: 1;
37  }
38}
39
40.fade-in {
41  animation: fade-in .3s ease-in-out;
42}
43
44.display-shadow {
45  text-shadow: 1px 1px 0 #000;
46}