Skip to content

Commit 03eeb12

Browse files
authored
Added pattern count and credits
1 parent afac36f commit 03eeb12

File tree

1 file changed

+35
-54
lines changed

1 file changed

+35
-54
lines changed

resources/style.css

Lines changed: 35 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,22 @@ body {
88
position: absolute;
99
}
1010

11-
#text_container {
12-
position: absolute;
13-
top: 15%;
14-
}
15-
1611
#phone_frame {
1712
height: 100%;
1813
width: auto;
1914
}
2015

16+
#pattern_count_indicator {
17+
position: absolute;
18+
top: 48%;
19+
left: 36%;
20+
font-size: 12px;
21+
}
22+
23+
#currentPattern {
24+
display: inline;
25+
}
26+
2127
#point_grid {
2228
position: absolute;
2329
top: 54%;
@@ -37,6 +43,11 @@ body {
3743
animation: expand-and-contract 0.6s;
3844
}
3945

46+
#text_container_top {
47+
position: absolute;
48+
top: 15%;
49+
}
50+
4051
input[type=radio] {
4152
position: absolute;
4253
visibility: hidden;
@@ -67,6 +78,25 @@ label + input[type=radio] + label {
6778
overflow: hidden;
6879
}
6980

81+
#text_container_bottom {
82+
position: absolute;
83+
bottom: 5%;
84+
}
85+
86+
h5 {
87+
margin-bottom: 10px;
88+
}
89+
90+
a {
91+
color: #DDDDDD;
92+
font-size: 14px;
93+
text-decoration: none;
94+
}
95+
96+
a:hover {
97+
text-decoration: underline;
98+
}
99+
70100
@keyframes expand-and-contract {
71101
0% {
72102
transform: scale(2.2);
@@ -75,52 +105,3 @@ label + input[type=radio] + label {
75105
transform: scale(1.0);
76106
}
77107
}
78-
79-
/*
80-
@media only screen and (max-width:620px) {
81-
#phone_container {
82-
left: 50%;
83-
transform: translateX(-53%);
84-
bottom: 0;
85-
}
86-
87-
#phone_frame {
88-
height: 70%;
89-
width: auto;
90-
}
91-
92-
#point_grid {
93-
position: absolute;
94-
top: 54%;
95-
left: 29%;
96-
}
97-
98-
#text_container {
99-
top: 0;
100-
}
101-
}
102-
103-
@media only screen and (min-width: 620px) and (max-width:768px) {
104-
#phone_container {
105-
left: 50%;
106-
transform: translateX(-50%);
107-
bottom: 0;
108-
}
109-
110-
#phone_frame {
111-
height: 70%;
112-
width: auto;
113-
}
114-
115-
#point_grid {
116-
position: absolute;
117-
top: 52%;
118-
left: 28%;
119-
}
120-
121-
#text_container {
122-
position: absolute;
123-
top: 0;
124-
}
125-
}
126-
*/

0 commit comments

Comments
 (0)