-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
108 lines (88 loc) · 1.55 KB
/
style.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
105
106
107
108
body {
background-color: #131316;
color: #fff;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
padding: 0;
margin: 0;
}
section {
display: grid;
place-items: center;
align-content: center;
min-height: 100vh;
}
.scroll-text{
padding-top: 10rem;
}
.hidden {
opacity: 0;
filter: blur(5px);
transition: all 2s;
}
.show {
opacity: 1;
filter: blur(0);
transition: all 2s;
}
.logos a{
z-index: 1;
}
.github{
position: absolute;
bottom: 0;
left: 0;
right: 0;
display: flex;
justify-content: flex-start;
margin: .3rem;
padding-top: .5rem;
}
.github img{
max-width: 2rem;
margin-left: 2rem;
}
.footer > div{
position: absolute;
bottom: 0;
left: 0;
right: 0;
height:50px;
background-color: rgba(255,255,255,0.8);
box-shadow: 3px 2px 1px 2px rgba(0, 0, 0, .1);
margin-top: .5rem;
}
.footer a{
display: flex;
align-items: center;
justify-content: center;
font-family: "Roboto";
font-size: 1rem;
text-decoration: none;
color: black;
z-index: 1;
}
.footer h2{
margin-top: 1rem;
}
/* Optional Exit Animations */
.exit-left{
transform: translateX(-100%);
}
.exit-right{
transform: translateX(100%);
}
.exit-up{
transform: translateY(-100%);
}
.exit-down{
transform: translateY(100%);
}
/* Optional Flashing Animation */
.flash {
animation: flash 2s linear infinite;
}
@keyframes flash {
50% {
opacity: 0;
}
}