Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- html {
- box-sizing: border-box;
- padding: 0px;
- margin: 0px;
- }
- body {
- margin: 20px 30px 20px 30px;
- font-family: Arial, Helvetica, sans-serif;
- font-size: 20px;
- padding: 0;
- }
- header {
- display: flex;
- justify-content: space-between;
- padding-bottom: 10px;
- }
- .header-right {
- display: flex;
- }
- .search-box {
- border: 2px solid black;
- border-radius: 4px;
- width: 250px;
- margin-right: 30px;
- }
- .search-text {
- border: none;
- color: black;
- font-weight: bold;
- font-size: 16px;
- padding-left: 10px;
- }
- .search-text:focus {
- outline: none;
- }
- .search-box a i {
- color: gray;
- font-size: 16px;
- padding-left: 3px;
- }
- .help a {
- color: blue;
- font-size: 16px;
- text-decoration: none;
- }
- .help span {
- color: blue;
- padding-left: 2px;
- }
- .logo a {
- font-weight: bold;
- font-size: 20px;
- text-decoration: none;
- color: #020222;
- }
- .logo span {
- font-size: 25px;
- }
- .logo span {
- border-radius: 50%;
- border: 2px solid black;
- font-family: monospace;
- }
- .span1 {
- background-color: blue;
- color: white;
- }
- .span2 {
- background-color: red;
- margin-left: 2px;
- color: white;
- }
- .span3 {
- margin-left: 2px;
- }
- .container {
- display: grid;
- grid-template-columns: 0.6fr 1.4fr 1fr;
- grid-template-areas:
- "featured featured featured"
- "navigation article-title projects";
- grid-gap: 30px;
- }
- .featured {
- grid-area: featured;
- background: url(jessica.jpg);
- background-size: cover;
- background-position: top;
- min-height: 350px;
- display: flex;
- align-items: center;
- position: relative;
- }
- .featured::after {
- content: "";
- display: block;
- width: 100%;
- height: 100%;
- background-color: black;
- position: absolute;
- top: 0;
- left: 0;
- opacity: 0.1;
- }
- .featured-text {
- padding-left: 90px;
- width: 900px;
- line-height: 20px;
- color: white;
- z-index: 10000;
- }
- .article-title {
- grid-area: article-title;
- font-size: 16px;
- }
- .first-text h4 {
- color: gray;
- }
- .box-2 h4 {
- color: gray;
- }
- .article-title a {
- text-decoration: none;
- color: black;
- }
- .article-title a :hover {
- color: red;
- }
- .navigation {
- list-style: none;
- grid-area: navigation;
- background-color: rgb(2, 2, 34);
- display: grid;
- grid-template-columns: 1fr;
- margin-top: 15px;
- line-height: 15px;
- }
- .navigation li a {
- text-decoration: none;
- color: white;
- font-size: 17px;
- }
- .navigation h2 {
- color: white;
- font-size: 30px;
- }
- .navigation a h2:hover {
- color: gray;
- }
- .box-2 {
- display: grid;
- grid-template-columns: 1fr 1fr;
- grid-gap: 10px;
- }
- .box-1 {
- display: grid;
- grid-template-columns: 1fr 1fr;
- grid-gap: 20px;
- }
- .article-image {
- height: 300px;
- width: 400px;
- padding-top: 20px;
- position: relative;
- }
- .style {
- position: absolute;
- color: black;
- border-bottom: 2px solid white;
- border-right: 2px solid white;
- padding: 10px 0px 0px 10px;
- width: 100px;
- background-color: white;
- top: 55%;
- }
- .latest {
- border: 2px solid black;
- margin-top: 10px;
- height: 40px;
- display: flex;
- align-items: center;
- padding-left: 10px;
- }
- .news-image {
- height: 250px;
- width: 350px;
- }
- .employees {
- display: grid;
- grid-template-columns: 1fr 1fr 1fr;
- }
- .employees h4 {
- border: 2px solid black;
- padding: 10px 0px 10px 10px;
- }
- .employees h4:hover {
- background-color: gray;
- }
- .emp-text {
- background-color: gray;
- }
- .emp-text:hover {
- background-color: white;
- cursor: pointer;
- }
- .projects {
- grid-area: projects;
- padding-top: 20px;
- font-size: 16px;
- }
- .project-top {
- display: flex;
- justify-content: space-between;
- border: 2px solid black;
- height: 40px;
- align-items: center;
- padding: 0px 10px 0px 5px;
- }
- .project-middle {
- display: flex;
- }
- .project-image {
- height: 100px;
- width: 200px;
- padding-top: 20px;
- padding-right: 20px;
- }
- .project-top-two {
- display: flex;
- justify-content: space-between;
- border: 2px solid black;
- height: 40px;
- align-items: center;
- margin-top: 30px;
- padding: 0px 10px 0px 5px;
- }
- .project-text a {
- text-decoration: none;
- color: black;
- }
- .project-text a:hover {
- color: red;
- }
- .documents {
- display: grid;
- grid-template-columns: repeat(4, 1fr);
- grid-gap: 5px;
- padding-top: 20px;
- font-size: 15px;
- text-align: center;
- }
- .fa-solid {
- margin-bottom: -50px;
- }
- video {
- width: 500px;
- height: 350px;
- padding-top: -40px;
- }
- .profile-pic {
- height: 100px;
- width: 100px;
- }
- .profile {
- display: grid;
- grid-template-columns: repeat(7, 1fr);
- }
- .last-text {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- min-height: 100px;
- font-size: 15px;
- }
Advertisement
Add Comment
Please, Sign In to add comment