Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Images #90

Closed
wants to merge 6 commits into from
Closed
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
Binary file added media/keployFeatures.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added media/newone.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added media/newtwo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added media/showMetricss.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 10 additions & 1 deletion webviews/components/Config.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@
border-radius: 5px;
transition: all 0.3s ease;
box-shadow: inset 0px 4px 20px 1px rgba(255, 145, 77, 0.8),

inset 0px 4px 4px 0px rgba(255, 153, 0, 0.8);
}
.logo {
Expand Down Expand Up @@ -174,6 +175,7 @@
height: 100vh;
display: flex;
flex-direction: column;

padding: 20px;
}

Expand All @@ -184,6 +186,7 @@
justify-content: center;
}


.welcome-heading {
font-size: 40px;
font-weight: bold;
Expand All @@ -203,6 +206,7 @@
font-weight: bold; /* Make the first line bold for contrast */
}


.body-text p:nth-child(2) {
margin-top: 40px;
font-size: 22px;
Expand All @@ -229,7 +233,7 @@
font-family: 'Montserrat', sans-serif;
width: 300px;
font-size: 20px;
padding: 15px;

margin: 20px 0;
text-decoration: none;
color: white;
Expand All @@ -240,6 +244,7 @@
text-align: center;
transition: all 0.3s ease;
box-shadow: 0 0 20px rgba(255, 145, 77, 0.8); /* Glowing shadow effect based on #ff914d */

}
.logo-header{
display: flex;
Expand Down Expand Up @@ -275,4 +280,8 @@
height: 14vw;
}
}
.btn:hover {
box-shadow: 0 0 20px rgba(255, 153, 0, 1), 0 0 40px rgba(255, 153, 0, 0.5); /* Stronger glow on hover */
transform: scale(1.1);
}
</style>
2 changes: 2 additions & 0 deletions webviews/components/IntegrationTest.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -599,6 +599,7 @@
display: flex;
flex-direction: row;
align-items: start;

padding: 2.5vw 5vw;
width: 100%; /* Full width of the container */
justify-content: flex-end; /* Align icons to the left */
Expand All @@ -614,6 +615,7 @@
border: 1px solid #f77b3e;
border-radius: 5px;
transition: all 0.3s ease;

box-shadow: inset 0px 4px 20px 1px rgba(255, 145, 77, 0.8),
inset 0px 4px 4px 0px rgba(255, 153, 0, 0.8);
}
Expand Down
6 changes: 5 additions & 1 deletion webviews/components/KeployHome.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -674,6 +674,7 @@
border: 1px solid #f77b3e;
border-radius: 5px;
transition: all 0.3s ease;

box-shadow: inset 0px 4px 20px 1px rgba(255, 145, 77, 0.8),
inset 0px 4px 4px 0px rgba(255, 153, 0, 0.8);
}
Expand All @@ -682,6 +683,7 @@
display: flex;
flex-direction: row;
align-items: start;

padding: 2.5vw 5vw;
width: 100%; /* Full width of the container */
justify-content: flex-end; /* Align icons to the left */
Expand Down Expand Up @@ -826,6 +828,7 @@
align-items: center;
justify-content: space-between;
padding: 12px;

margin-top: 24px;
background-color: black;
color: white;
Expand Down Expand Up @@ -1046,6 +1049,7 @@
.timeline-icon {
display: none; /* Hide icon */
}

.settings-form {
display: flex;
flex-direction: column;
Expand Down Expand Up @@ -1119,8 +1123,8 @@ input:focus {
/* Card text and button responsiveness for mobile */
.card {
padding: 3vw;

width: 100%;
}
.log-buttons-container {
width: 65vw;
}
Expand Down
1 change: 1 addition & 0 deletions webviews/components/UtgDocs.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,7 @@
border: 1px solid #f77b3e;
border-radius: 5px;
transition: all 0.3s ease;

box-shadow: inset 0px 4px 20px 1px rgba(255, 145, 77, 0.8),
inset 0px 4px 4px 0px rgba(255, 153, 0, 0.8);
}
Expand Down
Loading