-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTutorial.css
124 lines (104 loc) · 2.78 KB
/
Tutorial.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
.content-high {
font-size: 1.8rem;
margin-bottom: 20px;
}
.content-low {
font-size: 1.5rem;
margin-bottom: 30px;
}
.img {
width: 300px;
height: 300px;
margin-left: 160px;
}
.algo-choose-img {
animation-name: AlgoChooseAnimation;
animation-duration: 4s;
animation-play-state: running;
animation-delay: 0;
animation-iteration-count: infinite;
animation-fill-mode: forwards;
}
.start-end-img {
background-image: url(./images/startEnd.png);
background-repeat: no-repeat;
}
.toggle-weight-img {
animation-name: toggleWeightAnimation;
animation-duration: 4s;
animation-play-state: running;
animation-delay: 0;
animation-iteration-count: infinite;
animation-fill-mode: forwards;
}
.toggle-flag-img {
animation-name: toggleFlagAnimation;
animation-duration: 4s;
animation-play-state: running;
animation-delay: 0;
animation-iteration-count: infinite;
animation-fill-mode: forwards;
}
@keyframes AlgoChooseAnimation {
0%{ background-image: url(./images/algoChoose.png); background-repeat: no-repeat; }
50%{ background-image: url(./images/algoOptions.png); background-repeat: no-repeat; }
100% { background-image: url(./images/algoChoose.png); background-repeat: no-repeat; }
}
@keyframes toggleWeightAnimation {
0%{ background-image: url(./images/weightFalse.png); background-repeat: no-repeat; }
50%{ background-image: url(./images/weightTrue.png); background-repeat: no-repeat; }
100% { background-image: url(./images/weightFalse.png); background-repeat: no-repeat; }
}
@keyframes toggleFlagAnimation {
0%{ background-image: url(./images/flagFalse.png); background-repeat: no-repeat; }
50%{ background-image: url(./images/flagTrue.png); background-repeat: no-repeat; }
100% { background-image: url(./images/flagFalse.png); background-repeat: no-repeat; }
}
.instructions {
position: absolute;
width: 40%;
right: 0%;
}
.iconId {
text-align: center;
}
.icons {
position: relative;
margin-top: 40px;
text-align: center;
}
.icon-img {
position: relative;
left: 45%;
width: 70px;
height: 70px;
}
.icon-text {
position: relative;
font-size: 1.4rem;
}
.st-pt {
background-image: url(./images/runBro.png);
background-repeat: no-repeat;
background-size: cover;
}
.wall {
background-image: url(./images/wall.jpg);
background-repeat: no-repeat;
background-size: cover;
}
.wei {
background-image: url(./images/one.png);
background-repeat: no-repeat;
background-size: cover;
}
.flag {
background-image: url(./images/friends.png);
background-repeat: no-repeat;
background-size: cover;
}
.fin-pt {
background-image: url(./images/house.png);
background-repeat: no-repeat;
background-size: cover;
}