summaryrefslogtreecommitdiff
path: root/webapp/static/style.css
blob: da272af0861dbf01fd01a60ad05eb4833b291f31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local('Source Sans Pro Light'), local('SourceSansPro-Light'), url(fonts/SourceSansPro-Light.woff2) format('woff2');
}

@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Source Sans Pro Regular'), local('SourceSansPro-Regular'), url(fonts/SourceSansPro-Regular.woff2) format('woff2');
}

@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url(fonts/SourceSansPro-Bold.woff2) format('woff2');
}

html {
    background: #2d2829;
    background-image: url(bg.svg);
    color: #ffffff;
    font-family: 'Source Sans Pro';
    font-size: 14pt;
    font-weight: 300;
}

a:active, a:hover, a:visited, a:link {
    color: #fff;
    font-weight: 400;
}


body {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 0 0;
    padding: 3mm 3mm 3mm 3mm;
}

.layout-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 38em;
    max-width: 100%;
}


.header {
    text-align: center;
}

.header > img.title {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.header > .blurb {
    text-align: justify;
    hyphens: auto;
    padding-bottom: 50px;
}


.annot {
    display: flex;
    align-items: center;
    align-content: start;
}

.annot.top {
    align-items: end;
    flex-direction: row-reverse;
    align-content: start;
}

.annot.bottom {
    align-items: start;
    flex-direction: row;
}

.annot.top > .desc {
    padding-left: 1em;
    padding-bottom: 2em;
    max-width: 60%;
}

.annot.bottom > .desc {
    padding-right: 1em;
    padding-top: 4.5em;
    max-width: 60%;
}

.annot > .bubble {
    max-width: 30%;
    background-size: contain;
    background-repeat: no-repeat;
    text-align: center;
    font-size: .7rem;
}

.annot.top > .bubble {
    background-image: url(bubble1-small.png);
    padding: 2em 2em 5em 2em;
}

.annot.bottom > .bubble {
    background-image: url(bubble2-small.png);
    padding: 7em 2em 5em 2em;
}

a.btn {
    display: block;
    font-weight: 700;
    background-color: #b50000;
    border-radius: 0.5em;
    padding: .4em 1em .4em 1em;
    margin-top: .2em;
}

a.btn:active, a.btn:hover, a.btn:visited, a.btn:link {
    text-decoration: none;
}


.workflow-images {
    display: flex;
    align-items: center;
    width: 100%;
}

.workflow-images > .gerber {
    width: 220px;
}

.workflow-images > .svg {
    width: 300px;
}

.workflow-images > .models {
    width: 280px;
}

.workflow-images > .arrow {
    width: 120px
}


.footer {
    opacity: 0.5;
    text-align: center;
    padding-top: 5em;
}

.footer > img {
    padding-bottom: .5em;
}

.footer > a {
    display: block;
}

.footer > .copyright {
    padding-top: 1em;
}