Featured Post

Glowing border HTML +CSS [Source code available]

This is the login.hml and also create login.css [SOURCE CODE]   just copy and paste     <! DOCTYPE   html > < html   lang = &quo...

Thursday, June 4, 2020

Glowing border HTML +CSS [Source code available]

This is the login.hml and also create login.css

[SOURCE CODE] 
just copy and paste
 

 <!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.css">
    <link rel="stylesheet" type="text/css" href="login.css">
    <link href='https://fonts.googleapis.com/css?family=Bungee Inline' rel='stylesheet'></head>
<body>
   <div class="block" id="changecolor">
       <h2>Log-In (^_^)</h2>
       <p>Please fill in your credential login.</p>
       <div class="wrapper">
           <!--action still need to connect for secure-->
           <form action="######" method="post">
               <div class="form-group"><!--need to connect php area-->
                   <label>Username</label>
                   <input type="text" name="username"  class="form-control" value="#####">
                   <span class="help-block"><!--php area--></span>
               </div>
               <div class="form-group"><!--need to connect php area-->
                <label>Password</label>
                <input type="password" name="password" class="form-control">
                <span class="help-block"><!--php area--></span>
            </div>
            <div class="form-group"></div>
                <input type="submit" class="btn" value="LOGIN">
            </div>
            <div class="sign"><p>Need account? <a href="Register.php">Sign up now!</a></p></div>


           </form>
       </div>
   </div>
   
</body>
</html>

 
 body {
    margin0;
    padding0;
    background-imagelinear-gradient(0degrgb(646170), rgb(000));
    overflowhidden;
    font-family'Bungee Inline';
    
}
.btn{
    background-colorrgb(241584);
    positionrelative;
    floatright;
    right43%;
    color#025502;
    
}
.btn:hover{
    colorrgb(025564);
}

.block h2{
    
    positionrelative;
    text-aligncenter;
    colorrgb(2551450);
    padding-top20px;
    padding-left20px;
    font-size50px;
    font-weightbolder;
    text-shadow5px 5px 5px rgb(2552141);
    

}
#changecolor h2{
    animation: changecolor 5s infinite;
}
@keyframes changecolor {
    from {colorrgb(212550);}
    to {color#ffff00;}
  }
.block p{
    colorrgb(1825318);
    padding-left20px;
    font-size20px;
    text-aligncenter;
    
}
label {
    font-size15px;
    right42%;
   floatright;
    positionrelative;
    colorrgb(02550);
    text-aligncenter;
}
.sign p{
    colorrgb(262437);
    positionrelative;
    
    text-aligncenter;
    padding40px;
    
}
.sign p a{
    text-decorationnone;
}
.sign p a:hover{
    color#0000ff;
}
/*background area*/
.block {
    top-160px;
    positionrelative;
    margin300px auto 0;
    width40%;
    height500px;
    backgroundlinear-gradient(0deg#000#292929);
}

.block:before.block:after {
    content'';
    positionabsolute;
    left-2px;
    top-2px;
    backgroundlinear-gradient(45deg#fb0094#0000ff#00ff00,#ffff00#ff0000#fb0094
        #0000ff#00ff00,#ffff00#ff0000);
    background-size400%;
    widthcalc(100% + 4px);
    heightcalc(100% + 4px);
    z-index-1;
    animation: steam 20s linear infinite;
}

@keyframes steam {
    0% {
        background-position0 0;
    }
    50% {
        background-position400% 0;
    }
    100% {
        background-position0 0;
    }
}

.block:after {
    filterblur(50px);
}
.wrapper{
    padding20px;
}

No comments:

Post a Comment