]> git.somenet.org - pub/jan/aic18.git/blob - service-website/src/index.scss
updated design
[pub/jan/aic18.git] / service-website / src / index.scss
1 body {
2   margin: 0;
3   padding: 0;
4   font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans",
5   "Droid Sans", "Helvetica Neue", sans-serif;
6   -webkit-font-smoothing: antialiased;
7   -moz-osx-font-smoothing: grayscale;
8 }
9
10 code {
11   font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
12 }
13
14 .app {
15   min-height: 100vh;
16   display: flex;
17   flex-direction: column;
18 }
19
20 main {
21   flex: 1;
22 }
23
24 footer {
25   padding-top: 1em;
26   padding-bottom: 2em;
27 }
28
29 #headerMargin {
30   margin-top: 1em;
31 }
32
33 .spinner {
34   height: 3em;
35   text-align: center;
36   font-size: 10px;
37 }
38
39 .spinner > div {
40   background-color: #333;
41   height: 100%;
42   width: 6px;
43   margin-left:0.25em;
44   display: inline-block;
45   
46   -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
47   animation: sk-stretchdelay 1.2s infinite ease-in-out;
48 }
49
50 .spinner .rect2 {
51   -webkit-animation-delay: -1.1s;
52   animation-delay: -1.1s;
53 }
54
55 .spinner .rect3 {
56   -webkit-animation-delay: -1.0s;
57   animation-delay: -1.0s;
58 }
59
60 .spinner .rect4 {
61   -webkit-animation-delay: -0.9s;
62   animation-delay: -0.9s;
63 }
64
65 .spinner .rect5 {
66   -webkit-animation-delay: -0.8s;
67   animation-delay: -0.8s;
68 }
69
70 @-webkit-keyframes sk-stretchdelay {
71   0%, 40%, 100% { -webkit-transform: scaleY(0.4) }  
72   20% { -webkit-transform: scaleY(1.0) }
73 }
74
75 @keyframes sk-stretchdelay {
76   0%, 40%, 100% { 
77     transform: scaleY(0.4);
78     -webkit-transform: scaleY(0.4);
79   }  20% { 
80     transform: scaleY(1.0);
81     -webkit-transform: scaleY(1.0);
82   }
83 }
84
85 #pdfDownloadContainer{
86   margin-top: 5em;
87 }
88
89 #pdfDownloadIcon{
90   margin: 3em;
91 }