From d6180911c5177fb439fe3c874d0dc9a7603e28e0 Mon Sep 17 00:00:00 2001 From: Dipanita45 <132455672+Dipanita45@users.noreply.github.com> Date: Thu, 16 May 2024 12:36:23 +0530 Subject: [PATCH] update --- css-20240516T065336Z-001.zip | Bin 850 -> 0 bytes style/css/style.css | 125 +++++++++++++++++++++++++ index (3).html => style/index (3).html | 0 3 files changed, 125 insertions(+) delete mode 100644 css-20240516T065336Z-001.zip create mode 100644 style/css/style.css rename index (3).html => style/index (3).html (100%) diff --git a/css-20240516T065336Z-001.zip b/css-20240516T065336Z-001.zip deleted file mode 100644 index 07cf1f8fb27e744e2c879aac720b55e47fbe63f4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 850 zcmWIWW@Zs#;Nak3U|>)LVg%r2aArs@F4iwDsmw{$1F}LxSQ!{ggesG{7!<(D7#SoO zHbgxtxA}8}5up#lDlHIVV0^I3*B!-(yP?t9w+%$<^uO41crD~D6}nxzNlQPudDDKy z=uNs>-fm%!QWpQO{iHjwMw9PJ>Sbqv=Rag>#h+$utK=lk zr@M9sDK#J9{q#=4weOT;kD5$VM}cd~?2KyrBOkLLROcFq#e`1aWI1Rh@1X0kWW@uu zTQMSAx*Qcaox9|$7L*Dl#%wlc2wlA-VyVEMwer8!pKPvn?@{QDzoZiSS8s+~+IPuQ zb3ICo>{rZfJ`kTJv_POINx&%9ROQLK^F2J_5}l$f8S9T2gdd*oRaPc-)A(rWM*g$X z3`uGeHhtYNF_Lf2+>O1Nd~F9lnqK{NTyOT`qfdHQ2gd2mc+J}X*T+-J*6HAf>2kJv z_W!@}r=)zY%rw1wJh5*7qW*7>$=-YH=_lWvx0>uu&Azj)-d%rYi~qdm`x(xEjVsaq zUg@&SWBV0`HJ-+PdmbNU-JkX4%7Wx6fn`k(#1q*UWwf+y-?2V$dGXQ>f_~Az@)Az# z@wsF*pYHTjcFioBBX@5#tJ=|aAsyzIPIyZ-a1$D414zdreG zrrh+-&soQ^6=%H;_q{ZCZszTu|1N#^-EYr+Lxf8*(0D(9*=E`BJty)G ztYQ8p9^lQ+p|y4QMh7Mah7+6&3<2JZOd<@3^ouM9O24Q8B`H!NH3xXJvVm-11j0HX Ky$|Rr1_l6!*hn(~ 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