-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage2.css
132 lines (114 loc) · 1.88 KB
/
page2.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400i,600,600i,700,900|Yrsa:400,500,600,700&display=swap");
@font-face {
font-family: PlanePensle;
src: url(fonts/PlainPensleBoldItalic.ttf);
font-weight: bold;
}
body {
font-family: PlanePensle;
font-weight: bold;
color: #05111a;
display: flex;
justify-content: center;
align-items: center;
}
.flex {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h1 {
font-size: 42px;
}
h2 {
font-family: "Yrsa", serif;
}
.lobster-main img {
max-width: 300px;
}
.button {
transition: 200ms ease all;
background: #05111a;
color: white;
font-family: "Yrsa", serif;
font-size: 22px;
display: flex;
border-radius: 15px;
padding: 5px 18px;
justify-content: center;
}
.button:hover {
cursor: pointer;
background: white;
color: #05111a;
border: 2px solid #05111a;
}
.tryagain {
font-family: PlanePensle !important;
}
.frame-2 {
display: none;
flex-direction: column;
justify-content: center;
align-items: center;
}
#text-1 {
opacity: 0;
}
.all-lobsters {
left: 0;
right: 0;
display: none;
opacity: 0;
flex-direction: column;
justify-content: center;
align-items: center;
}
.row {
position: relative;
width: 1200px;
display: flex;
justify-content: space-around;
}
.all-lobsters img {
max-width: 120px;
transition: 200ms ease all;
}
.all-lobsters img:hover {
cursor: pointer;
transition: 200ms ease all;
transform: scale(1.2);
}
.lobster {
/* position: absolute; */
}
.frame-3 {
display: none;
opacity: 0;
height: 800px;
}
/* #text-2 {
opacity: 0;
}
#subtext-2 {
opacity: 0;
} */
.response-1 {
opacity: 0;
}
#wrong-1,
#wrong-2,
#wrong-3 {
display: none;
justify-content: center;
flex-direction: column;
align-items: center;
opacity: 0;
}
h3 {
margin-bottom: 5px;
}
h2 {
margin-bottom: 50px;
}