Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
EECS498-uBoard
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EzTunes
EECS498-uBoard
Commits
69377be6
Commit
69377be6
authored
6 years ago
by
Laurel Williams
Browse files
Options
Downloads
Patches
Plain Diff
Fix button colors and spacing
parent
467d0bff
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
public/js/client.js
+7
-1
7 additions, 1 deletion
public/js/client.js
public/style/main.css
+38
-30
38 additions, 30 deletions
public/style/main.css
with
45 additions
and
31 deletions
public/js/client.js
+
7
−
1
View file @
69377be6
...
...
@@ -124,7 +124,13 @@ $('#modal-close').click(function() {
var
swiper
=
new
Swiper
(
'
.swiper-container
'
,
{
});
swiper
.
on
(
"
transitionStart
"
,
function
()
{
move
=
true
;
})
swiper
.
on
(
"
transitionEnd
"
,
function
()
{
move
=
false
;
})
var
swiperInner
=
new
Swiper
(
'
.swiper-container-inner
'
,
{
direction
:
'
vertical
'
,
});
...
...
This diff is collapsed.
Click to expand it.
public/style/main.css
+
38
−
30
View file @
69377be6
...
...
@@ -12,13 +12,14 @@ mark {
.draggable
{
/*Button Positioning and Size*/
width
:
8%
;
height
:
25%
;
margin
:
1%
;
margin-top
:
3%
;
border-radius
:
2em
;
padding
:
4%
;
font-size
:
19px
;
width
:
10%
;
height
:
30%
;
/* margin: 1%; */
/* margin-top: 3%; */
border-radius
:
1.5em
;
/* padding: 4%; */
font-size
:
20px
;
font-weight
:
800
;
text-align
:
center
;
position
:
absolute
;
/* width: 6%;
...
...
@@ -34,10 +35,10 @@ mark {
/*Button Coloring*/
background-image
:
-webkit-gradient
(
linear
,
left
top
,
left
bottom
,
color-stop
(
0
,
#0
0bbd4
),
color-stop
(
1
,
#
3f51b5
));
background-image
:
-webkit-linear-gradient
(
top
,
#0
0bbd4
0%
,
#
3f51b5
100%
);
background-image
:
linear-gradient
(
to
bottom
,
#0
0bbd4
0%
,
#
3f51b5
100%
);
background-image
:
-webkit-linear-gradient
(
93deg
,
#
3f51b5
0%
,
#0
0bbd4
100%
);
background-image
:
-webkit-gradient
(
linear
,
left
top
,
left
bottom
,
color-stop
(
0
,
#0
F0FFF
),
color-stop
(
1
,
#
0000A8
));
background-image
:
-webkit-linear-gradient
(
top
,
#0
F0FFF
0%
,
#
0000A8
100%
);
background-image
:
linear-gradient
(
to
bottom
,
#0
F0FFF
0%
,
#
0000A8
100%
);
background-image
:
-webkit-linear-gradient
(
93deg
,
#
0000A8
0%
,
#0
F0FFF
100%
);
color
:
#fff
;
/*Text display options*/
...
...
@@ -55,10 +56,10 @@ mark {
-ms-transform
:
translate
(
0px
,
-40%
);
/* IE 9 */
-webkit-transform
:
translate
(
0px
,
-40%
);
/* Safari */
transform
:
translate
(
0px
,
-40%
);
background-image
:
-webkit-gradient
(
linear
,
left
top
,
left
bottom
,
color-stop
(
0
,
#0
0bbd4
),
color-stop
(
1
,
#
3f51b5
));
background-image
:
-webkit-linear-gradient
(
top
,
#0
0bbd4
0%
,
#
3f51b5
100%
);
background-image
:
linear-gradient
(
to
bottom
,
#0
0bbd4
0%
,
#
3f51b5
100%
);
background-image
:
-webkit-linear-gradient
(
273deg
,
#
3f51b5
0%
,
#0
0bbd4
100%
);
background-image
:
-webkit-gradient
(
linear
,
left
top
,
left
bottom
,
color-stop
(
0
,
#0
F0FFF
),
color-stop
(
1
,
#
0000A8
));
background-image
:
-webkit-linear-gradient
(
top
,
#0
F0FFF
0%
,
#
0000A8
100%
);
background-image
:
linear-gradient
(
to
bottom
,
#0
F0FFF
0%
,
#
0000A8
100%
);
background-image
:
-webkit-linear-gradient
(
273deg
,
#
0000A8
0%
,
#0
F0FFF
100%
);
color
:
#fff
;
}
...
...
@@ -68,7 +69,7 @@ mark {
}
.swiper-container
{
height
:
5
0%
;
height
:
4
0%
;
width
:
100%
;
position
:
relative
;
overflow
:
hidden
;
...
...
@@ -82,13 +83,13 @@ mark {
}
.swiper-wrapper
{
height
:
8
5
%
;
height
:
8
0
%
;
width
:
500%
;
position
:
relative
;
}
.static-bar
{
height
:
15
%
height
:
20
%
}
.static-key
{
...
...
@@ -96,12 +97,14 @@ mark {
position
:
relative
;
height
:
100%
;
text-align
:
center
;
padding-top
:
1%
;
font-size
:
20px
;
border
:
1px
solid
#888
;
background-image
:
-webkit-gradient
(
linear
,
left
top
,
left
bottom
,
color-stop
(
0
,
#0
0bbd4
),
color-stop
(
1
,
#
3f51b5
));
background-image
:
-webkit-linear-gradient
(
top
,
#0
0bbd4
0%
,
#
3f51b5
100%
);
background-image
:
linear-gradient
(
to
bottom
,
#0
0bbd4
0%
,
#
3f51b5
100%
);
background-image
:
-webkit-linear-gradient
(
93deg
,
#
3f51b5
0%
,
#0
0bbd4
100%
);
background-image
:
-webkit-gradient
(
linear
,
left
top
,
left
bottom
,
color-stop
(
0
,
#0
F0FFF
),
color-stop
(
1
,
#
0000A8
));
background-image
:
-webkit-linear-gradient
(
top
,
#0
F0FFF
0%
,
#
0000A8
100%
);
background-image
:
linear-gradient
(
to
bottom
,
#0
F0FFF
0%
,
#
0F0FFF
100%
);
background-image
:
-webkit-linear-gradient
(
93deg
,
#
0000A8
0%
,
#0
F0FFF
100%
);
color
:
#fff
;
...
...
@@ -116,10 +119,10 @@ mark {
-ms-transform
:
translate
(
0px
,
-40%
);
/* IE 9 */
-webkit-transform
:
translate
(
0px
,
-40%
);
/* Safari */
transform
:
translate
(
0px
,
-40%
);
background-image
:
-webkit-gradient
(
linear
,
left
top
,
left
bottom
,
color-stop
(
0
,
#0
0bbd4
),
color-stop
(
1
,
#
3f51b5
));
background-image
:
-webkit-linear-gradient
(
top
,
#0
0bbd4
0%
,
#
3f51b5
100%
);
background-image
:
linear-gradient
(
to
bottom
,
#0
0bbd4
0%
,
#
3f51b5
100%
);
background-image
:
-webkit-linear-gradient
(
273deg
,
#
3f51b5
0%
,
#0
0bbd4
100%
);
background-image
:
-webkit-gradient
(
linear
,
left
top
,
left
bottom
,
color-stop
(
0
,
#0
F0FFF
),
color-stop
(
1
,
#
0000A8
));
background-image
:
-webkit-linear-gradient
(
top
,
#0
F0FFF
0%
,
#
0000A8
100%
);
background-image
:
linear-gradient
(
to
bottom
,
#0
F0FFF
0%
,
#
0000A8
100%
);
background-image
:
-webkit-linear-gradient
(
273deg
,
#
0000A8
0%
,
#0
F0FFF
100%
);
color
:
#fff
;
}
...
...
@@ -167,7 +170,7 @@ mark {
#touchpad
{
resize
:
vertical
;
overflow
:
auto
;
height
:
4
0%
;
height
:
5
0%
;
width
:
100%
;
background-color
:
rgb
(
200
,
250
,
250
);
position
:
relative
;
...
...
@@ -186,23 +189,28 @@ mark {
#leftClick
{
width
:
40%
;
height
:
3
5%
;
height
:
2
5%
;
background-color
:
rgb
(
150
,
180
,
200
);
float
:
left
;
border
:
black
solid
;
border-right-width
:
0
;
}
#scrollWheel
{
width
:
20%
;
height
:
3
5%
;
height
:
2
5%
;
background-color
:
rgb
(
100
,
150
,
150
);
float
:
left
;
border
:
black
solid
;
}
#rightClick
{
width
:
40%
;
height
:
3
5%
;
height
:
2
5%
;
background-color
:
rgb
(
150
,
180
,
200
);
float
:
left
;
border
:
black
solid
;
border-left-width
:
0
;
}
#mousepad
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment