-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
159 lines (139 loc) · 2.95 KB
/
Copy pathstyle.css
File metadata and controls
159 lines (139 loc) · 2.95 KB
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
height: 100vh;
}
.nav{
width: 90%;
height: 70px;
/* background-color: #1e6d70; */
display: flex;
/* justify-content: center; */
align-items: center;
color: aliceblue;
font-size: 36px;
font-family: Comic Sans MS;
font-weight: bolder;
padding-bottom: 10px;
border-bottom: 1px solid lightgrey;
border-radius: 5px;
}
.nav img{
margin-left: 20px;
width: 100px;
aspect-ratio: 16/9;
justify-self: start;
}
.nav span{
flex-grow: 1;
text-align: center;
color: rgb(35, 57, 80);
}
.main {
display: flex;
justify-content: space-around;
align-items: center;
width: 60%;
}
.tools {
width: 40%;
height: 90%;
}
#loopIndicators {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-block-start: 20px;
font-size: 24px;
height: 40%;
border-radius: 20px;
box-shadow: 1px 1px 2px rgba(51, 51, 51, 0.8);
}
.indicator {
width: 70%;
display: flex;
align-items: center;
padding: 5px;
margin: 5px 0;
color: aliceblue;
}
.i,
.j {
width: 70%;
display: flex;
justify-content: space-around;
align-items: center;
}
.j {
margin-left: 50px;
}
.outter {
display: flex;
justify-content: center;
align-items: center;
background-image: linear-gradient(180deg, cadetblue 0%, #528789 45%, #1e6d70 100%);
border-radius: 10px;
font-family: Comic Sans MS;
font-weight: bolder;
}
.inner {
display: flex;
justify-content: center;
align-items: center;
background-image: linear-gradient(180deg, lightcoral 0%, #ed7d7d 45%, #e56e6e 100%);
border-radius: 10px;
font-family: Comic Sans MS;
font-weight: bolder;
}
.looper-circle {
width: 40px;
height: 40px;
border-radius: 50%;
border: 2px solid green;
margin-right: 10px;
display: flex;
justify-content: center;
align-items: center;
transition: border 0.4s;
}
#iIndicator,
#jIndicator {
display: flex;
justify-content: center;
align-items: center;
width: 20%;
height: 90%;
background-color: aliceblue;
margin-left: 5px;
border-radius: 20px;
}
#iIndicator {
color: #1e6d70;
}
#jIndicator {
color: lightcoral;
}
#controls {
text-align: center;
margin-top: 20px;
}
#playPauseBtn {
padding: 10px 20px;
font-size: 18px;
cursor: pointer;
width: 50%;
border-radius: 20px;
background-image: linear-gradient(180deg, #1f999d 0%, #1e7f83 45%, #1e6d70 100%);
color: aliceblue;
border: 2px solid #f3cf21;
font-family: Comic Sans MS;
font-weight: bold;
}