-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
67 lines (67 loc) · 1.26 KB
/
styles.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
body {
margin: 0;
padding: 0;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
font-family: 'Courier New', Courier, monospace;
background: linear-gradient(175deg, #0ff0b3 0%, #036ed9 100%);
}
section {
display: flex;
height: 100vh;
}
/* ========================================================================== */
.center {
display: flex;
align-items: center;
justify-content: center;
}
h1 {
margin: 0;
font-size: 6vw;
color: #ffffff;
}
h2 {
margin: 0 0 10 0;
font-size: 3vw;
background: linear-gradient(
to right,
#000000 0%,
#707070 30%,
#76fd88 60%,
#3aff54 100%
);
background: -webkit-linear-gradient(
to right,
#000000 0%,
#707070 30%,
#76fd88 60%,
#3aff54 100%
);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
h3 {
margin: 5;
font-size: 2vw;
color: #000000;
}
/* ========================================================================== */
canvas {
display: block;
border-radius: 10px;
}
#anime_tk {
width: 100%;
height: 20vh;
position: relative;
}
#anime_other {
width: 100%;
height: 20vh;
position: relative;
}
/* ========================================================================== */