storj/web/satellite/static/resetPassword/success.css
NikolaiYurchenko 224025d714 web/satellite: password recovery page title fixed
Change-Id: I4e070315ec2e5f0b7ff0140f93dd6aacf1e68112
2020-01-14 13:34:54 +00:00

71 lines
1.4 KiB
CSS

/* Copyright (C) 2019 Storj Labs, Inc. */
/* See LICENSE for copying information. */
@font-face {
font-family: 'font_regular';
font-display: swap;
src: url('../fonts/font_regular.ttf') format('truetype')
}
.container {
position: fixed;
top: 0;
left: 0;
z-index: 1000;
width: 100%;
height: 100vh;
background-color: #fff;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
a {
text-decoration: none;
}
.container__title {
font-family: 'font_regular', sans-serif;
font-weight: bold;
font-size: 32px;
line-height: 39px;
}
.container__info {
width: 566px;
text-align: center;
font-family: 'font_regular', sans-serif;
font-size: 18px;
line-height: 26px;
}
.container__button {
display: flex;
align-items: center;
justify-content: center;
background-color: #2683ff;
border-radius: 6px;
cursor: pointer;
width: 216px;
height: 48px;
margin-top: 30px;
}
.container__button p {
font-family: 'font_regular', sans-serif;
font-weight: bold;
font-size: 16px;
line-height: 23px;
color: #fff;
}
.container__button:hover {
box-shadow: 0 4px 20px rgba(35, 121, 236, 0.4);
}