Skip to content

Commit

Permalink
Merge pull request #106 from cayb0rg/issue/webpack-5-upgrade
Browse files Browse the repository at this point in the history
Issue/webpack 5 upgrade
  • Loading branch information
clpetersonucf committed Oct 24, 2023
2 parents 528cd47 + e3f98b2 commit 62da49b
Show file tree
Hide file tree
Showing 41 changed files with 7,623 additions and 6,522 deletions.
22 changes: 0 additions & 22 deletions .travis.yml

This file was deleted.

102 changes: 102 additions & 0 deletions assets/css/includes.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
/* includes.css */

body {
padding: 0px;
margin: 0px;

background: #fff;
font-family: 'Lato', sans-serif;
}

.logo {
width: 150px;
padding-left: 60px;
margin-left: 5px;
font-size: 26px;
font-family: 'Lato';
font-weight: 300;
background: url(./../img/materia-logo.svg);
background-repeat: no-repeat;
color: #000;
text-decoration: none;
}

h1 {
font-weight: 300;
font-size: 30px;
}

h2 {
font-weight: 300;
}

h5 {
margin:20px 0 0 0;
}

.edit_button, .action_button {
position: relative;
display: inline-block;
margin: 10px 0 0 6px;
padding: 7px 13px 8px 13px;
border: 0;
outline: 0;
border-radius: 6px;
font-weight: 700;
color: #333;
font-size: 15px;
cursor: pointer;
}

.action_button {
margin: 10px 0 0 6px;
padding: 7px 13px 8px 13px;
background-color: #ffd439;

font-size: 15px;

transition: all 0.4s ease-in-out;

cursor: pointer;
user-select: none;
}

.action_button.smaller {
font-size: 15px !important;
}

.action_button.bigger {
font-size: 18px;
}

.action_button:hover {
background-color: #ffc904;
color: #000;
box-shadow: 0px 1px 3px #979696;
text-decoration: none;
}

.helper-button button {
margin: 10px 0 0 6px;
padding: 7px 13px 8px 13px;
background-color: #c4dd61;

font-size: 15px;

transition: all 0.4s ease-in-out;

cursor: pointer;
user-select: none;
}

.helper-button button:hover {
color: #000;
box-shadow: 0px 1px 3px #979696;
text-decoration: none;
}

.cancel_button {
color: #000;
font-weight: 300;
text-decoration: underline;
}
33 changes: 28 additions & 5 deletions assets/css/mwdk-download.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@import url('./includes.css');

body#download {
background: #ffffff;
}
Expand All @@ -19,15 +21,36 @@ body#download hr {
margin: 15px 50px 0;
}

body#download #cancel-button{
color: #555;
text-decoration: underline;
}

body#download #build-commands{
margin: 47px;
}

body#download #download_button{
margin-right:20px;
}

.hide {
display: none;
}

#progress-container {
padding: 30px;
}

#progressbar {
width: 100%;
height: 20px;
margin: 20px auto;

background: #b2aeb7;
border-radius: 11px;
}

#progressbar #fill {
width: 0;
height: 100%;

background: #1da4cd;
border-radius: 11px;
/* transition: width 0.3s ease; */
}

0 comments on commit 62da49b

Please sign in to comment.