-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
128 lines (111 loc) · 1.99 KB
/
style.css
File metadata and controls
128 lines (111 loc) · 1.99 KB
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-size: 10px;
font-family: 'Trebuchet MS', 'arial', 'helvetica', 'Open Sans', sans-serif;
}
.container {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
width: 100%;
height: 100vh;
background: #dfe4e7;
}
.title {
margin-bottom: 1rem;
color: #373f8a;
}
.row {
display: flex;
flex-direction: column;
align-items: center;
background-color: #dfe4e7;
width: 450px;
border-radius: 1.2rem;
box-shadow: 13px 13px 20px #cbced1,
-13px -13px 20px #ffffff;
padding-top: 10px;
padding-bottom: 10px;
}
.inputbox {
width: 90%;
}
form {
display: flex;
flex-direction: column;
}
input[type="text"] {
display: block;
margin-bottom: 1rem;
padding: 20px 10px 20px 5px;
font-size: 1.2rem;
line-height: 1.9rem;
padding: 0.3125rem 0.9375rem;
border-radius: 10px;
border: none;
box-shadow: none;
color: #807569;
outline: none;
width: 100%;
box-shadow: inset 5px 5px 5px #cbced1,
inset -5px -5px 5px #ffffff;
background: none;
}
.inputbox label {
font-size: 1.1rem;
margin-bottom: 10px;
color: #555;
}
input[type="button"] {
outline: none;
border: none;
cursor: pointer;
width: 50%;
height: 40px;
border-radius: 30px;
font-size: 1.2rem;
font-family: "Lato", sans-serif;
font-weight: bold;
color: #fff;
text-align: center;
background: #5762be;
box-shadow: 3px 3px 8px #acaeb1,
3px -3px 8px #fff;
transition: all 0.2s;
margin-bottom: 5px;
}
.btSave:hover {
background-color: #dfe4e7;
color: #5762be;
}
.btSave:active {
background-color: #dfe4e7;
box-shadow:inset 3px 3px 8px #cbced1,
inset 3px -3px 8px #fff;
transform: translateY(4px);
}
.footer {
font-size: 1rem;
margin-top: 10px;
}
@media (max-width: 768px) {
.container {
width: 100%;
}
.row {
width: 400px;
}
}
@media (min-width: 320px) and (max-width: 425px) {
.container {
width: 100%;
}
.row {
width: 90%;
}
}