Log In
21 |Or
29 | 40 |Can’t log in? ・Already have an account?
41 |├── Animated Login Form ├── css │ └── style.css ├── img │ ├── avatar.svg │ └── log2.jpg ├── index.html └── js │ └── script.js ├── CSS Button - 1 ├── index.html └── style.css ├── Feedback form ├── CSS │ └── style.css ├── README.md └── index.html ├── Login-form ├── CSS │ └── style.css ├── README.md ├── img │ ├── icons8-google.svg │ ├── image 2.png │ ├── image 3.png │ └── image 4.png └── index.html ├── Loki series intro ├── README.md ├── index.html └── style.css ├── Pricing-card ├── README.md ├── index.html └── style.css ├── Solar-eclipse ├── README.md ├── index.html └── style.css ├── The Linker ├── CSS │ └── style.css ├── favicon.png ├── index.html └── profile-pic.png └── survey-card-UI ├── README.md ├── index.html └── style.css /Animated Login Form/css/style.css: -------------------------------------------------------------------------------- 1 | * { 2 | padding: 0; 3 | margin: 0; 4 | box-sizing: border-box; 5 | } 6 | 7 | body { 8 | font-family: "Poppins", sans-serif; 9 | overflow: hidden; 10 | } 11 | 12 | .wave { 13 | position: fixed; 14 | bottom: 0; 15 | left: 0; 16 | height: 100%; 17 | z-index: -1; 18 | } 19 | 20 | .container { 21 | width: 100vw; 22 | height: 100vh; 23 | display: grid; 24 | grid-template-columns: repeat(2, 1fr); 25 | grid-gap: 7rem; 26 | padding: 0 2rem; 27 | } 28 | 29 | .img { 30 | display: flex; 31 | justify-content: flex-end; 32 | align-items: center; 33 | } 34 | 35 | .login-content { 36 | display: flex; 37 | justify-content: flex-start; 38 | align-items: center; 39 | text-align: center; 40 | } 41 | 42 | .img img { 43 | width: 500px; 44 | } 45 | 46 | form { 47 | width: 360px; 48 | } 49 | 50 | .login-content img { 51 | height: 100px; 52 | } 53 | 54 | .login-content h2 { 55 | margin: 15px 0; 56 | color: #333; 57 | text-transform: uppercase; 58 | font-size: 2rem; 59 | } 60 | 61 | .login-content .input-div { 62 | position: relative; 63 | display: grid; 64 | grid-template-columns: 7% 93%; 65 | margin: 25px 0; 66 | padding: 5px 0; 67 | border-bottom: 2px solid #d9d9d9; 68 | } 69 | 70 | .login-content .input-div .one { 71 | margin-top: 0; 72 | } 73 | 74 | .i { 75 | color: #d9d9d9; 76 | display: flex; 77 | justify-content: center; 78 | align-items: center; 79 | } 80 | 81 | .i { 82 | transition: 0.3s; 83 | } 84 | 85 | .input-div > div { 86 | position: relative; 87 | height: 45px; 88 | } 89 | 90 | .input-div > div > h5 { 91 | position: absolute; 92 | left: 10px; 93 | top: 50%; 94 | transform: translateY(-50%); 95 | color: #999; 96 | font-size: 18px; 97 | transition: 0.3s; 98 | } 99 | 100 | .input-div:before, 101 | .input-div:after { 102 | content: ""; 103 | position: absolute; 104 | bottom: -2px; 105 | width: 0%; 106 | height: 2px; 107 | background-color: #38d39f; 108 | transition: 0.4s; 109 | } 110 | 111 | .input-div:before { 112 | right: 50%; 113 | } 114 | 115 | .input-div:after { 116 | left: 50%; 117 | } 118 | 119 | .input-div.focus:before, 120 | .input-div.focus:after { 121 | width: 50%; 122 | } 123 | 124 | .input-div.focus > div > h5 { 125 | top: -5px; 126 | font-size: 15px; 127 | } 128 | 129 | .input-div.focus > .i > i { 130 | color: #38d39f; 131 | } 132 | 133 | .input-div > div > input { 134 | position: absolute; 135 | left: 0; 136 | top: 0; 137 | width: 100%; 138 | height: 100%; 139 | border: none; 140 | outline: none; 141 | background: none; 142 | padding: 0.5rem 0.7rem; 143 | font-size: 1.2rem; 144 | color: #555; 145 | font-family: "poppins", sans-serif; 146 | } 147 | 148 | .input-div.pass { 149 | margin-bottom: 4px; 150 | } 151 | 152 | a { 153 | display: block; 154 | text-align: right; 155 | text-decoration: none; 156 | color: #999; 157 | font-size: 0.9rem; 158 | transition: 0.3s; 159 | } 160 | 161 | a:hover { 162 | color: #38d39f; 163 | } 164 | 165 | .btn { 166 | display: block; 167 | width: 100%; 168 | height: 50px; 169 | border-radius: 25px; 170 | outline: none; 171 | border: none; 172 | background-image: linear-gradient(to right, #e74c3c, #9b59b6, #32be8f); 173 | background-size: 200%; 174 | font-size: 1.2rem; 175 | color: #fff; 176 | font-family: "Poppins", sans-serif; 177 | text-transform: uppercase; 178 | margin: 1rem 0; 179 | cursor: pointer; 180 | transition: 0.5s; 181 | } 182 | .btn:hover { 183 | background-position: right; 184 | } 185 | 186 | @media screen and (max-width: 1050px) { 187 | .container { 188 | grid-gap: 5rem; 189 | } 190 | } 191 | 192 | @media screen and (max-width: 1000px) { 193 | form { 194 | width: 290px; 195 | } 196 | 197 | .login-content h2 { 198 | font-size: 2.4rem; 199 | margin: 8px 0; 200 | } 201 | 202 | .img img { 203 | width: 400px; 204 | } 205 | } 206 | 207 | @media screen and (max-width: 900px) { 208 | .container { 209 | grid-template-columns: 1fr; 210 | } 211 | 212 | .img { 213 | display: none; 214 | } 215 | 216 | .wave { 217 | display: none; 218 | } 219 | 220 | .login-content { 221 | justify-content: center; 222 | } 223 | } 224 | -------------------------------------------------------------------------------- /Animated Login Form/img/avatar.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Animated Login Form/img/log2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charukirti/HTML-and-CSS-mini-projects/e6ea71240bb8249de013ef95de87fc0834d888b1/Animated Login Form/img/log2.jpg -------------------------------------------------------------------------------- /Animated Login Form/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |Your thoughts are valuable in helping improve our products.
23 |Can’t log in? ・Already have an account?
41 |We uncover the facts around the clock, all over the globe.
27 |Monthly
39 |Then $3 every month for the first year
41 |Best value
52 |Yearly
53 |Then $30 for the first year
55 |A passionate frontend developer
30 |GitHub
67 | 68 | 69 | 70 | 71 | 76 |Hashnode
81 | 82 | 83 | 84 | 85 | 90 |66 | The data you provide helps us improve our platform. Find out more if it 67 | is a legal case, you must submit a legal removal request. 68 |
69 | 70 | 71 | 72 |