Social Network Pages HTML Get link Facebook X Pinterest Email Other Apps November 24, 2020 Home Locations Contact Home Move some files around and try to update the navigation to still work! (hint: you'll need to update the CSS link href as well) Get link Facebook X Pinterest Email Other Apps Comments
Social Network Pages CSS November 24, 2020 /* Add your styles here */ body { background: #eee; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; } ul { list-style-type: none; margin: 0; padding: 0; } li { display: inline-block; margin-right: 20px; } Read more
REGISTRATION FORM STYLE CSS December 07, 2020 body { background: #C5E1A5; } form { width: 30%; margin: 60px auto; background: #efefef; padding: 60px 120px 80px 120px; text-align: center; -webkit-box-shadow: 2px 2px 3px rgba(0,0,0,0.1); box-shadow: 2px 2px 3px rgba(0,0,0,0.1); } label { display: block; position: relative; margin: 40px 0px; } .label-txt { position: absolute; top: -1.6em; padding: 10px; font-family: sans-serif; font-size: .8em; letter-spacing: 1px; color: rgb(120,120,120); transition: ease .3s; } .input { width: 100%; padding: 10px; background: transparent; border: none; outline: none; } .line-box { position: relative; width: 100%; height: 2px; background: #BCBCBC; } .line { position: absolute; width: 0%; height: 2px; top: 0px; left: 50%; transform: translateX(-50%); background: #8BC34A; transition: ease .6s; } .input:focus + .line-box ... Read more
Comments
Post a Comment