Snippets
Created by
Borna Vidović
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 | <html>
<head>
<title>Log In</title>
<style>
@font-face{
font-family: Roboto Thin;
src: url("Roboto-Thin.ttf");
}
@font-face{
font-family: Roboto Bold;
src: url("Roboto-Bold.ttf");
}
body{
padding: 0px;
margin: 0px;
}
::placeholder{
color: white;
opacity: 0.8;
}
.username{
width: 200px;
height: 30px;
background-color: transparent;
border-top: none;
border-left: none;
border-right: none;
border-bottom-color: gray;
border-bottom-width: 2px;
z-index: 25;
position: relative;
top: -520px;
color: white;
right: -530px;
font-family: Roboto Thin;
}
.username:hover{
width: 220px;
height: 50px;
background-color: transparent;
border-top: none;
border-left: none;
border-right: none;
border-bottom-color: gray;
border-bottom-width: 2px;
z-index: 25;
position: relative;
top: -520px;
color: white;
right: -530px;
font-family: Roboto Thin;
font-size: 15pt;
transition-property: all;
transition-duration: 300ms;
}
.password{
width: 200px;
height: 30px;
background-color: transparent;
border-top: none;
border-left: none;
border-right: none;
border-bottom-color: gray;
border-bottom-width: 2px;
z-index: 25;
position: relative;
top: -520px;
color: white;
right: -530px;
font-family: Roboto Thin;
}
.password:hover{
width: 220px;
height: 50px;
background-color: transparent;
border-top: none;
border-left: none;
border-right: none;
border-bottom-color: gray;
border-bottom-width: 2px;
z-index: 25;
position: relative;
top: -520px;
color: white;
right: -530px;
font-family: Roboto Thin;
font-size: 15pt;
transition-property: all;
transition-duration: 300ms;
}
.logIn{
font-family: Roboto Bold;
font-size: 45pt;
text-align: center;
color: white;
position: relative;
top: -525px;
right: -50px;
}
.submit{
width: 110px;
height: 40px;
position: relative;
top: -465px;
right: -365px;
background-color: transparent;
color: white;
border-color: gray;
border-radius: 10px;
}
.submit:hover{
width: 120px;
height: 50px;
transition-property: all;
transition-duration: 350ms;
border-radius: 7px;
background-color: transparent;
font-family: Roboto Bold;
font-size: 20pt;
}
.options{
position: relative;
top: -520px;
right: -550px;
background-color: transparent;
font-family: Roboto Light;
font-size: 12pt;
width: 150px;
height: 25px;
color: gray;
}
</style>
</head>
<body>
<img src = "bg.jpg" style = "z-index: -25; width: 100%; height: 100%;">
<p class = "logIn">Log In</p>
<form>
<input type = "text" placeholder = "Enter Your username or email" class = "username">
<input type = "password" placeholder = "Password" class = "password">
<input type = "submit" value = "Submit" class = "submit">
</form>
<select class = "options">
<option>Hrvatska</option>
<option>United Kingdom</option>
<option>USA</option>
</select>
</body>
</html>
|
Comments (0)
You can clone a snippet to your computer for local editing. Learn more.