-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
101 lines (86 loc) · 1.32 KB
/
index.css
File metadata and controls
101 lines (86 loc) · 1.32 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
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
*,
*:before,
*:after {
box-sizing: border-box;
position: relative;
}
body,
html {
color: #751c7c;
font-family: Arial, Helvetica, sans-serif;
font-size: 1em;
}
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.header,
.tagline {
text-align: center;
}
.asterisk {
font-size: 0.75em;
text-align: center;
}
.fade-in {
opacity: 1;
animation-name: fadeInOpacity;
animation-iteration-count: 1;
animation-timing-function: ease-in;
animation-duration: 1.5s;
}
@keyframes fadeInOpacity {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.logo {
margin-top: 1em;
margin-bottom: 1em;
}
.get-started {
list-style: none;
margin: 0;
padding: 0;
margin-top: 1em;
margin-bottom: 1em;
display: flex;
flex-direction: row;
text-transform: uppercase;
}
.get-started > a {
padding: 0.5em;
display: inline-block;
text-decoration: none;
color: #751c7c;
border: 2px solid #751c7c;
}
.get-started:hover {
cursor: pointer;
background-color: #751c7c;
}
.get-started:hover a {
color: white;
}
.codesandbox {
margin-top: 1em;
color: #751c7c;
text-decoration: none;
}
.codesandbox:hover {
text-decoration: underline;
}
.code-block {
width: 100%;
display: flex;
justify-content: center;
}
.code {
overflow: auto;
width: 800px;
}