-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (56 loc) · 1.03 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
min-height: 100vh;
background: #eee;
display: flex;
font-family: sans-serif;
}
.container {
margin: auto;
width: 500px;
max-width: 90%;
}
.container form {
width: 100%;
height: 100%;
padding: 20px;
background: white;
border-radius: 4px;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.container form h1 {
text-align: center;
margin-bottom: 24px;
color: #222;
}
.container form .form-control {
width: 100%;
height: 40px;
background: white;
border-radius: 4px;
border: 1px solid silver;
margin: 10px 0 18px 0;
padding: 0 10px;
}
.container form .btn {
margin-left: 50%;
transform: translateX(-50%);
width: 120PX;
height: 34px;
border: none;
outline: none;
background: #27a327;
cursor: pointer;
font-size: 16px;
text-transform: uppercase;
color: white;
border-radius: 4px;
transition: 0.3s;
}
.container form .btn:hover {
opacity: 0.7;
}