Gadgets

Showing posts with label css3. Show all posts
Showing posts with label css3. Show all posts

Friday, 12 September 2014

Text Style Zoom



Text Zoom:

<style>
.container{
margin:0px auto;
width: 1000px;
}
#textzoom a{
color:  #0081C2;
font-family: 'Corbel';
font-size:4em;
font-weight: bold;
text-decoration: none;
transition:all 2s ease-in-out;
}
#textzoom a:hover{
font-size:8em;
transition:all 2s ease-in-out;
}
</style>
<div class="container">
<div id="textzoom">
<a href=""> Text Zoom</a>
</div></div>

JSP Page

Text Shadow Style



Shadow Text Styles: 
<style>
.container{
margin:0px auto;
width: 1000px;
}
#shadowtext1 a{
color:  #026202;
font-family: Arial,sans-serif;
font-size: 45px;
font-weight: bold;
text-decoration:none;
text-shadow:2px 2px black;
}
#shadowtext2 a{
color:  #026202;
font-family: Arial,sans-serif;
font-size: 45px;
font-weight: bold;
text-decoration:none;
text-shadow:2px 2px 2px black;
}
#shadowtext3 a{
color:  #026202;
font-family: Arial,sans-serif;
font-size: 45px;
font-weight: bold;
text-decoration:none;
text-shadow:5px 6px 5px black;
}
.text1 a{
color:  #054d52;
text-decoration: none;
font-family: Arial,sans-serif;
font-size: 45px;
font-weight: bold;
text-shadow:0px 0px 5px #000;
}
 
</style>
<div class="container">
<hr>
<div id="shadowtext1">
<a href=""> Life Is Beautiful</a>
</div>
<hr>
<div id="shadowtext2">
<a href=""> Life Is Beautiful</a>
</div>
<hr>
<div id="shadowtext3">
<a href=""> Life Is Beautiful</a>
</div>
<hr>
<div class="text1">
<a href=""> Life Is Beautiful</a>
</div>
</div>
 

 

JSP Page


Wednesday, 23 July 2014

CSS3 Shapes chat bubble

Circle symbol:
#circle{
                width: 200px;
                height: 200px;
                border-radius:50%;
                background:linear-gradient(top, #054d52 0%, #057178 100%);
               background:-webkit-linear-gradient(top, #054d52 0%,#057178 100%);
                       background: -moz-linear-gradient(top, #054d52 0%, #057178 100%);
                background: -ms-linear-gradient(top, #054d52 0%, #057178 100%);
                 background: -o-linear-gradient(top, #054d52 0%, #057178 100%);
       
            }
 
<div id="circle">
        </div>
 
 
Chat bubble symbol:
#chat-symbol{
                width: 100px;
                height: 80px;
                background:  #054d52;
                position: relative;
                border-radius:8px;
            }
            #chat-symbol:before{               
                content: "";
                position: absolute;
                left:  100%;
                top: 26px;
                border-top: 13px solid transparent;
                border-left:  26px solid #054d52;
                border-bottom: 13px solid transparent;
            }
 
<div id="chat-symbol">           
        </div>
JSP Page

Friday, 23 November 2012

Web Search Engine Box

Web Search Engine Box using html and css styles :
<html>
    <head>
        <title></title>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <style type="text/css">
            body{
                margin-top: 180px;
               text-align: center;
            }
            #tf{
             border: solid 2px darkcyan;
            }
            h1{
                color:  cornflowerblue;
                font-family: cursive;
                                                             }
            #button{
                color: white;
                background-color:blue;
                border: sloid 1px #aaaaaa;
                cursor: pointer;
                width: 60px;
                height: 25px;       
            }                       
            </style>
    </head>
    <body>
        <h1>Web Search</h1>
       <form name="cse"action="http://www.google.com/cse">
  <input name="q" type="text" size="45" id="tf" />
  <input type="submit" name="sa" value="Search" id="button" />
</form>
    </body>

</html>
output :