-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
153 lines (147 loc) · 2.8 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color: #f8f8f8;
font-family: 'Montserrat', sans-serif;
}
.mainContainer{
display: flex;
height: 100vh;
align-items: center;
flex-direction: column;
justify-content: center;
}
.logo{
display: flex;
margin-top: -10px;
align-items: center;
flex-direction: column;
justify-content: center;
}
.logo h1{
width: 300px;
color: silver;
text-align: center;
}
.logo svg , .logo h1{
margin: 5px;
}
.userName{
display: none;
padding: 55px;
position: fixed;
border-radius: 5px;
align-items: center;
justify-content: center;
background-color: #fff;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.show{
display: flex !important;
}
/* input filed code */
:root {
background: #f5f6fa;
color: #9c9c9c;
font: 1rem "PT Sans", sans-serif;
}
.container {
height: 100%;
}
a {
color: inherit;
}
a:hover {
color: #7f8ff4;
}
.container {
display: -webkit-box;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
flex-direction: column;
-webkit-box-align: center;
align-items: center;
-webkit-box-pack: center;
justify-content: center;
}
.uppercase {
text-transform: uppercase;
}
.btn {
display: inline-block;
background: transparent;
color: inherit;
font: inherit;
border: 0;
outline: 0;
padding: 0;
-webkit-transition: all 200ms ease-in;
transition: all 200ms ease-in;
cursor: pointer;
}
.btn--primary {
background: #5fcef3;
color: #fff;
box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
border-radius: 2px;
padding: 12px 36px;
}
.btn--primary:hover {
background: #54c9f0;
}
.btn--primary:active {
background: #5fcef3;
box-shadow: inset 0 0 10px 2px rgba(0, 0, 0, 0.1);
}
.btn--inside {
margin-left: -96px;
}
.form__field {
width: 360px;
background: #fff;
color: #a3a3a3;
font: inherit;
box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.1);
border: 0;
outline: 0;
padding: 22px 18px;
}
/* Media Query */
@media only screen and (max-width:310px){
.logo h1{
width: auto;
font-size: 1.4rem !important;
}
}
@media only screen and (max-width:520px){
.userName{
height: 170px;
padding: 20px;
}
.form__field{
max-width: 300px;
}
.btn--primary{
margin-left: -80px;
padding: 10px 26px;
}
}
@media only screen and (max-width:375px){
.userName{
width: 290px;
height: 170px;
margin: 0 !important;
padding: 0 !important;
}
.form__field{
margin-left: 0 !important;
width: 250px !important;
}
.btn--primary{
padding: 8px 12px;
}
}