Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Dipanita45 committed May 16, 2024
1 parent 83ea817 commit d618091
Show file tree
Hide file tree
Showing 3 changed files with 125 additions and 0 deletions.
Binary file removed css-20240516T065336Z-001.zip
Binary file not shown.
125 changes: 125 additions & 0 deletions style/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,125 @@
/*basic style*/
* {
box-sizing: border-box;
}

body {
background-color: white;
}

h1 {
margin-bottom: 15px;
text-align: center;
color: #ff4532;
font-size: 50px;
}

section {
position: relative;
padding: 15px;
width: 90%;
}

p {
position: relative;
clear: right;
}

div {
position: relative;
background-color: gray;
border: 3.5px solid black;
width: 100%;
margin-left: auto;
margin-right: auto;
margin-bottom: auto;
}

.sub1 {
float: right;
width: 100px;
padding: 5px;
margin: -3px -3px 0px;
border: 3.5px solid black;
text-align: center;
font-size: 125%;
font-weight: bold;
background-color: #FFB6C1;

}

.sub2 {
float: right;
color: white;
width: 100px;
padding: 5px;
margin: -3px -3px 0px;
border: 3.5px solid black;
text-align: center;
font-size: 125%;
font-weight: bold;
background-color: #FF0000;

}

.sub3 {
color: black;
float: right;
width: 100px;
padding: 5px;
margin: -3px -3px 0px;
border: 3.5px solid black;
text-align: center;
font-size: 125%;
font-weight: bold;
background-color: rgb(223, 212, 121);

}

.content {
padding: 5px;
border: none;
background-color: gray;
font-family: Helvetica;
color: black;
margin: 3px ;
height: 150px;
overflow: auto;
}

.row {
width: 90%;
}

/*desktop version*/
@media (min-width: 992px) {
.column-lg-4 {
float: left;
width: 33.33%;
}
}

/*tablet version*/
@media (min-width: 768px) and (max-width: 991px) {
.colmn-md-6 {
float: left;
width: 50%;
margin-left: auto;
margin-right: auto;
}

.colmn-md-12 {
float: left;
width: 100%;
margin-left: auto;
margin-right: auto;
}
}

/*mobile version*/
@media (max-width: 767px) {
.colmn-sm-12 {
float: left;
width: 100%;
}
}
File renamed without changes.

0 comments on commit d618091

Please sign in to comment.