Files
school/projects/challenge 4/SkillSphere/SkillSphere/assets/css/dashboard.css
vista-man 7cf2b73d2e update
2025-06-18 23:39:32 +02:00

243 lines
3.9 KiB
CSS

* {
margin: 0;
}
body {
background-color: #ED654A;
font-family: Arial;
overflow: hidden;
}
/* NavbarTop */
.navbar-top {
background-color: #004f59;
color: #ffffff;
box-shadow: 0px 4px 8px 0px grey;
height: 70px;
}
.title {
font-family: 'inter', sans-serif;
padding-top: 15px;
position: absolute;
left: 45%;
}
.navbar-top ul {
float: right;
list-style-type: none;
margin: 0;
overflow: hidden;
padding: 18px 50px 0 40px;
}
.navbar-top ul li {
float: left;
}
.navbar-top ul li a {
color: #ffffff;
padding: 14px 16px;
text-align: center;
text-decoration: none;
}
.icon-count {
background-color: #ff0000;
color: #fff;
float: right;
font-size: 11px;
left: -25px;
padding: 2px;
position: relative;
}
/* End */
/* Sidenav */
.sidenav {
background-color: #00444d;
color: #ffffff;
border-bottom-right-radius: 25px;
height: 86%;
left: 0;
overflow-x: hidden;
padding-top: 20px;
position: absolute;
top: 70px;
width: 250px;
}
.profile {
margin-bottom: 20px;
margin-top: -12px;
text-align: center;
}
.profile img {
border-radius: 50%;
box-shadow: 0px 0px 5px 1px grey;
}
.name {
font-size: 20px;
font-weight: bold;
padding-top: 20px;
}
.job {
font-size: 16px;
font-weight: bold;
padding-top: 10px;
}
.url, hr {
text-align: center;
}
.url hr {
margin-left: 20%;
width: 60%;
}
.url a {
font-weight: 600px;
color: #000000;
display: block;
font-size: 20px;
margin: 10px 0;
padding: 6px 8px;
text-decoration: none;
}
.url a:hover, .url .active {
font-weight: 600px;
background-color: #e8f5ff;
border-radius: 28px;
color: #000000;
margin-left: 14%;
width: 65%;
}
/* End */
/* Main */
.main {
margin-top: 2%;
margin-left: 29%;
font-size: 28px;
padding: 0 10px;
width: 58%;
}
.main h2 {
color: #ffffff;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 24px;
margin-bottom: 10px;
}
.main .card {
background-color: #004f59;
border-radius: 18px;
box-shadow: 1px 1px 8px 0 grey;
height: auto;
margin-bottom: 20px;
padding: 20px 0 20px 50px;
}
.main .card table {
border: none;
font-size: 16px;
height: 270px;
width: 80%;
color: #fff;
}
.edit {
position: absolute;
color: #e7e7e8;
right: 14%;
}
.social-media {
text-align: center;
width: 90%;
}
.social-media span {
margin: 0 10px;
}
.fa-facebook:hover {
color: #4267b3 !important;
}
.fa-twitter:hover {
color: #1da1f2 !important;
}
.fa-instagram:hover {
color: #ce2b94 !important;
}
.fa-invision:hover {
color: #f83263 !important;
}
.fa-github:hover {
color: #161414 !important;
}
.fa-whatsapp:hover {
color: #25d366 !important;
}
.fa-snapchat:hover {
color: #fffb01 !important;
}
/* Input Fields */
input[type="text"], input[type="email"], input[type="password"], textarea {
width: 100%;
padding: 10px;
margin: 10px 0;
border: 1px solid #ccc;
border-radius: 5px;
box-sizing: border-box;
font-size: 16px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f9f9f9;
transition: 0.3s ease-in-out;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, textarea:focus {
border-color: #007BFF;
box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
outline: none;
}
/* Submit Button */
button[type="submit"] {
background-color: #007BFF;
color: white;
border: none;
padding: 10px 20px;
font-size: 16px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
button[type="submit"]:hover {
background-color: #0056b3;
}
/* Optional: Style for form container */
form {
margin-top: 20px;
}
/* End */