-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.css
87 lines (77 loc) · 1.49 KB
/
main.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
body {
padding:0;
margin:0;
}
img {
max-width: 100%;
}
section {
width: 100%;
height: 100vh;
min-height: 100vh;
display: table;
font-weight: lighter;
font-size: 60px;
font-family: avenir next, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
text-align: center;
}
code {
font-family: "Envy Code R", "Courier New", Courier, monospace;
}
a {
text-decoration: none;
color: #333;
}
input {
font-family: avenir next, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-size: 40px;
font-weight: 300;
}
.align-middle {
display: table-cell;
vertical-align: middle;
}
.white {
color: white;
}
.text-shadow-dark {
text-shadow: 1px 1px #333;
}
.red-cross {
display: inline-block;
position: relative;
width: 260px;
height: 260px;
margin: 20px;
}
.red-cross::before,
.red-cross::after {
content: '';
display: block;
background: red;
position: absolute;
}
.red-cross::before {
width: 80px;
height: 260px;
left: 90px;
}
.red-cross::after {
width: 260px;
height: 80px;
top: 90px;
}
.tableflip {
display: inline-block;
width: 60px;
height: 70px;
background: url(https://tableflip.io/img/tableflip.min.svg) no-repeat;
background-size: 100% auto;
font-size:0;
user-select: none;
opacity: 0.8;
transition: opacity 400ms;
}
.tableflip:hover {
opacity: 1;
}