You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
736 B
30 lines
736 B
1 year ago
|
@import url(https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Share+Tech+Mono&display=swap);
|
||
|
*{
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
box-sizing: border-box;
|
||
|
font-family: 'Poppins', sans-serif;
|
||
|
}
|
||
|
body{
|
||
1 year ago
|
display: inline;
|
||
1 year ago
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
min-height: 100vh;
|
||
1 year ago
|
background: #fff;
|
||
|
}
|
||
|
input{
|
||
|
position: relative;
|
||
|
outline: none;
|
||
|
padding: 10px 20px;
|
||
|
border-radius: 10px;
|
||
|
letter-spacing: 1px;
|
||
|
font-size: 0.85em;
|
||
|
background-color: #00DBFF;
|
||
|
color: #fff;
|
||
|
cursor: pointer;
|
||
|
text-transform: uppercase;
|
||
|
font-weight: 600;
|
||
|
margin-top: 10px;
|
||
|
border: none;
|
||
|
}
|