-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
124 lines (108 loc) · 2.02 KB
/
style.css
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
@import url(https://fonts.googleapis.com/css?family=Source+Code+Pro:400,500,600,700|Source+Sans+Pro:400,600,700&display=swap);
body {
background: #EEE;
font-family: "Source Sans Pro", sans-serif;
font-size: 16px
}
* {
box-sizing: border-box
}
:focus {
outline: 0
}
.wrapper {
min-height: 100vh;
display: flex;
padding: 50px 15px
}
@media screen and (max-width:700px),
(max-height:500px) {
.wrapper {
flex-wrap: wrap;
flex-direction: column
}
}
.card-form {
max-width: 450px;
margin: auto;
width: 100%
}
@media screen and (max-width:576px) {
.card-form {
margin: 0 auto
}
}
.card-form__inner {
background: #fff;
box-shadow: 0 30px 60px 0 rgba(90, 116, 148, .4);
border-radius: 10px;
padding: 35px
}
@media screen and (max-width:480px) {
.card-form__inner {
padding: 25px;
padding-top: 165px
}
}
@media screen and (max-width:360px) {
.card-form__inner {
padding: 15px;
padding-top: 165px
}
}
.logo{
display: flex;
width: 80%;
margin: auto;
}
.card-form__button {
width: 100%;
height: 55px;
background: #2364d2;
border: none;
border-radius: 5px;
font-size: 22px;
font-weight: 500;
font-family: "Source Sans Pro", sans-serif;
box-shadow: 3px 10px 20px 0 rgba(35, 100, 210, .3);
color: #fff;
margin-top: 20px;
cursor: pointer
}
@media screen and (max-width:480px) {
.card-form__button {
margin-top: 10px
}
}
.card-input {
margin-bottom: 20px
}
.card-input__label {
font-size: 14px;
margin-bottom: 5px;
font-weight: 500;
color: #1a3b5d;
width: 100%;
display: block;
user-select: none
}
.card-input__input {
width: 100%;
height: 50px;
border-radius: 5px;
box-shadow: none;
border: 1px solid #ced6e0;
transition: all .3s ease-in-out;
font-size: 18px;
padding: 5px 15px;
background: 0 0;
color: #1a3b5d;
font-family: "Source Sans Pro", sans-serif
}
.card-input__input:focus,
.card-input__input:hover {
border-color: #3d9cff
}
.card-input__input:focus {
box-shadow: 0 10px 20px -13px rgba(32, 56, 117, .35)
}