Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- * {
- padding: 0px;
- margin: 0px;
- font-family: 'Arial';
- color: #dce6df;
- user-select: none;
- text-decoration: none;
- }
- body {
- background: #0f1214;
- }
- .wrapper {
- display: inline-flex;
- justify-content: center;
- align-items: center;
- margin: 70px 20px 0px 20px;
- }
- .card-container {
- width: 300px;
- height: 500px;
- background: #0e3466;
- border-radius: 10px;
- transition: 1s;
- }
- .title {
- font-size: 250%;
- margin: 20px 0px 0px 0px;
- }
- .desc {
- color: #bbc7c2;
- text-align: center;
- margin: 70px 0px 0px 0px;
- }
- .info {
- text-align: center;
- margin: 100px auto 0px auto;
- width: 170px;
- height: 30px;
- line-height: 30px;
- display: block;
- border: 4px #bbc7c2 solid;
- font-weight: 600;
- border-radius: 10px;
- transition: 0.5s;
- }
- .info:hover {
- border-radius: 20px;
- font-size: 120%;
- width: 190px;
- height: 40px;
- line-height: 40px;
- box-shadow: 0px 0px 20px #ffffff;
- transition: 0.5s;
- }
- .card-container:hover {
- box-shadow: 0px 0px 50px #093d82;
- transition: 1s;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement