-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathstyle.css
More file actions
74 lines (66 loc) · 1.33 KB
/
Copy pathstyle.css
File metadata and controls
74 lines (66 loc) · 1.33 KB
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
:root {
--purple: #654ea3;
--pink: #eaafc8;
--black: #444;
--transition: all 0.15s ease;
}
body {
background: #fff;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
font-family: "Varela Round", sans-serif;
color: var(--black);
font-size: 16px;
padding: 5px;
line-height: 1.4;
}
* {
outline: none;
}
h1 {
text-align: center;
text-transform: uppercase;
background: var(--purple);
background: -webkit-linear-gradient(to right, var(--pink), var(--purple));
background: linear-gradient(to right, var(--pink), var(--purple));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-bottom: 50px;
}
button {
cursor: pointer;
border: none;
padding: 8px 12px;
border-radius: 5px;
background-color: var(--pink);
color: var(--purple);
transition: var(--transition);
font-size: 16px;
}
button:hover {
color: #fff;
}
#app {
display: flex;
justify-content: center;
}
@media only screen and (max-width: 1200px) {
#app {
flex-wrap: wrap;
}
}
.train-buttons {
display: flex;
align-items: center;
justify-content: space-between;
margin: 0 auto;
width: 310px;
}
#tfjsController {
margin-right: 20px;
}
.info {
max-width: 450px;
margin: 50px auto 20px;
text-align: center;
}