-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
104 lines (87 loc) · 1.68 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
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
102
103
104
body {
font-family: 'Heebo', sans-serif;
text-align: center;
height: 100vh;
background-color: #0b0219;
color: #fff;
padding: 0;
margin: 0;
background: linear-gradient(270deg, #0b0219, #0d0122);
background-size: 400% 400%;
-webkit-animation: AnimationName 25s ease infinite;
-moz-animation: AnimationName 25s ease infinite;
animation: AnimationName 25s ease infinite;
}
.main-content {
margin-top: 4rem;
}
.description {
max-width: 450px;
text-wrap: balance;
}
@supports (text-wrap: pretty) {
.description {
text-wrap: pretty;
}
}
iframe {
aspect-ratio: 1 / 1;
height: 100%;
width: 100%;
max-width: 600px;
}
.mt-4 {
margin-top: 4rem;
}
.pad-box {
padding: 0 20px;
}
b {
font-weight: bold;
}
main {
height: 100vh;
display: grid;
place-items: center;
}
.logo {
width: 450px;
max-width: 100%;
}
nav {
margin: 2rem 0;
display: flex;
align-items: center;
justify-content: space-evenly;
}
a {
color: inherit;
transition: transform 200ms;
}
.content {
max-width: 680px;
padding: 20px;
text-align: left;
}
a:hover, a:focus, a:active {
transform: scale(1.1);
}
footer {
margin-top: 60px;
padding-bottom: 60px;
}
@-webkit-keyframes AnimationName {
0%{background-position:0% 50%}
50%{background-position:100% 50%}
100%{background-position:0% 50%}
}
@-moz-keyframes AnimationName {
0%{background-position:0% 50%}
50%{background-position:100% 50%}
100%{background-position:0% 50%}
}
@keyframes AnimationName {
0%{background-position:0% 50%}
50%{background-position:100% 50%}
100%{background-position:0% 50%}
}