-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cc29f22d.css
66 lines (56 loc) · 1.02 KB
/
main.cc29f22d.css
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
html {
height: 100%;
}
body {
height: 100%;
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}
.start {
height: 100px;
display: flex;
align-items: center;
justify-content: space-between;
}
.start > * {
flex: 1;
height: 100%;
cursor: pointer;
}
.start svg {
font-size: 1.8em;
}
.start :not(:first-child) {
margin-left: 16px;
}
.start .ant-card-body {
height: 100%;
display: flex;
align-items: center;
}
.start .ant-card-meta-description {
font-size: 0.8em;
}
.start .active {
position: relative;
background-color: #0d4f8c;
color: #fff;
}
.start .active * {
color: #fff;
}
.start .active::after {
position: absolute;
content: 'Paste Here';
bottom: 4px;
left: 12px;
color: #ccc;
}