diff --git a/css-20240516T065336Z-001.zip b/css-20240516T065336Z-001.zip deleted file mode 100644 index 07cf1f8..0000000 Binary files a/css-20240516T065336Z-001.zip and /dev/null differ diff --git a/style/css/style.css b/style/css/style.css new file mode 100644 index 0000000..12c0070 --- /dev/null +++ b/style/css/style.css @@ -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%; + } + } \ No newline at end of file diff --git a/index (3).html b/style/index (3).html similarity index 100% rename from index (3).html rename to style/index (3).html