Skip to content
Open

UI #2

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20,756 changes: 7,567 additions & 13,189 deletions ui/package-lock.json

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions ui/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
/>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>

Expand Down Expand Up @@ -46,5 +48,8 @@
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
</body>
</html>
66 changes: 65 additions & 1 deletion ui/src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,68 @@
to {
transform: rotate(360deg);
}
}
}
.padded-section{
padding:7% 15%;
background-color: #fff;
}

#sidebar {
width:auto;
background: #fff;
color: #ccc;
transition: all 0.3s;
box-shadow:0 0 18px -2px black;
border-radius:10px;
height:100vh;
}

#sidebar .sidebar-header {
padding: 20px;
background: #1092EC;
border-radius: 4px;
}

#sidebar ul.components {
padding: 20px 0;
}

#sidebar ul li a {
padding: 3.5rem;
font-size: 1.4em;
display: block;
}

#sidebar ul li a:hover {
color: #7386D5;
background: #fff;
cursor:pointer;
}
.select_{
font-size: 1em;
margin-right: 150px;
margin-left: 150px;
height:70%;
width: 30%;
border-radius: 10px;
border: 3px solid #ccc;

}
.select_:hover{
box-shadow:0 0 18px -2px black;
cursor:pointer;
}
.card{
margin-left:190px;
padding-left:10px;
}
.card:hover{
box-shadow:0 0 18px -2px black;
cursor:pointer;
}
/*.row:before, .row:after{
display: none !important;
}*/
/*.row{
display: -webkit-inline-box;
}*/
5 changes: 0 additions & 5 deletions ui/src/components/AppRegistration/AppRegistration.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,3 @@
flex-direction: 'column';
align-content: 'center';
}


/* .MuiTypography-body1 {
font-size: 3rem;
} */
Loading