You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
background:var(--bg) url('https://files.slack.com/files-pri/T09V59WQY1E-F0A71GFN7N2/untitled_artwork.png?pub_secret=e6e1934613') no-repeat center center fixed;
958
997
background-size: cover;
998
+
font-size:20px; /* bump base size on FAQ */
959
999
}
960
1000
961
1001
.signin-page {
@@ -994,8 +1034,10 @@ a.project-row:hover {
994
1034
995
1035
/* Start button image */
996
1036
.signin-start-img {
997
-
width:clamp(100px,22vw,200px);
1037
+
width:clamp(250px,22vw,200px);
998
1038
height: auto;
1039
+
animation: signin-bob 2.6s ease-in-out infinite;
1040
+
will-change: transform;
999
1041
}
1000
1042
1001
1043
.signin-contentform {
@@ -1037,6 +1079,13 @@ a.project-row:hover {
1037
1079
z-index:2;
1038
1080
}
1039
1081
1082
+
/* Mirror animal on bottom-right for signin page */
1083
+
.signin-mole--right {
1084
+
right:0;
1085
+
left: auto;
1086
+
transform:scaleX(-1);
1087
+
}
1088
+
1040
1089
/* Animations */
1041
1090
@keyframes fade-in-up {
1042
1091
from {
@@ -1059,6 +1108,15 @@ a.project-row:hover {
1059
1108
}
1060
1109
}
1061
1110
1111
+
@keyframes signin-bob {
1112
+
0%,100% {
1113
+
transform:translateY(0);
1114
+
}
1115
+
50% {
1116
+
transform:translateY(-6px);
1117
+
}
1118
+
}
1119
+
1062
1120
/* Global corner images */
1063
1121
.corner-img {
1064
1122
position: fixed;
@@ -1069,15 +1127,21 @@ a.project-row:hover {
1069
1127
}
1070
1128
.corner-img--left {
1071
1129
left:0;
1072
-
width:clamp(120px,14vw,220px);
1130
+
width:clamp(160px,20vw,320px);
1073
1131
height: auto;
1074
1132
}
1075
1133
.corner-img--right {
1076
1134
right:0;
1077
-
width:clamp(120px,16vw,260px);
1135
+
width:clamp(160px,22vw,360px);
1078
1136
height: auto;
1079
1137
}
1080
1138
1139
+
/* Signin-only tweaks: make bottom-left corner image bigger and slightly lower */
0 commit comments