Skip to content

Commit

Permalink
Create style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
snorlaxscave authored Dec 25, 2023
1 parent c5fd2cc commit 0cdd3f6
Showing 1 changed file with 164 additions and 0 deletions.
164 changes: 164 additions & 0 deletions static/assets/style/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,164 @@
.settingsform {
text-align: center;
background-color: rgba(7, 7, 7, 0.030);
padding: 30px;
width: fit-content;
height: fit-content;
margin: auto;
position: center;
justify-content: center;
color: black;
border: 1px solid black;
border-radius: 20px;
}

button {
color: black;
background-color: transparent;
padding: 10px;
border: 1px solid black;
border-radius: 20px;
cursor: pointer;
}

button:hover {
background-color: black;
color: white;
}

h5 {
font-size: 18px;
color: white;
}

.proxyform {
text-align: center;
background-color: rgba(7, 7, 7, 0.030);
padding: 50px;
width: fit-content;
height: fit-content;
margin: auto;
position: center;
justify-content: center;
color: black;
border: 1px solid black;
border-radius: 20px;
}

.proxy {
background-color: transparent;
font-family: "Montserrat", sans-serif;
font-size: 15px;
width: 400px;
height: 60px;
text-align: center;
border: solid black 1px;
border-radius: 10px;
outline: none;
transition: .2s;
}

.proxy:hover {
background-color: rgba(7, 7, 7, 0.200);
color: black;
transition: .2s;
}

.proxy:focus {
background-color: rgba(7, 7, 7, 0.100);
color: black;
transition: .2s;
}

body {
background-image: url(https://raw.githubusercontent.com/ArbYusuf/Website-Template/main/mainbg.gif);
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
margin: 0;
padding: 0;
}

.navbar {
background-color: #000;
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px;
}

.navbar-brand {
font-family: "Luckiest Guy", cursive;
font-size: 24px;
color: #fff;
text-decoration: none;
background-color: grey;
border-radius: 10px;
padding: 5px 10px;
}

.navbar-menu {
list-style: none;
margin: 0;
padding: 0;
display: flex;
}

.navbar-menu li {
margin-left: 10px;
}

.navbar-menu li a {
font-family: Arial, sans-serif;
font-size: 16px;
color: #fff;
text-decoration: none;
padding: 10px;
border-radius: 10px;
transition: all 0.3s ease;
}

.navbar-menu li a:hover {
background-color: grey;
transform: scale(1.1);
}

.navbar-menu li a.active {
border: 1px solid white;
}

.card-container {
flex: 0 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
}

.project {
background-color: #f1f1f1;
padding: 20px;
border-radius: 5px;
text-align: center;
transition: transform 0.3s ease-in-out;
}

.project:hover {
transform: scale(1.1);
}

.project-image {
width: 74%;
max-height: 130px;
object-fit: cover;
border-radius: 5px;
}

.project-title {
margin-top: 10px;
font-size: 17px;
}

.project-description {
margin-top: 8px;
}

2 comments on commit 0cdd3f6

@vercel
Copy link

@vercel vercel bot commented on 0cdd3f6 Dec 25, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on 0cdd3f6 Dec 25, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.