-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
72 lines (61 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
64
65
66
67
68
69
70
71
72
body {
background-color: #eee;
text-align: center;
}
button {
background-color: rgba(0,0,0,0);
outline: none;
}
h2 {
margin-bottom: 10px;
}
.btn {
margin-bottom: 10px;
margin-left: auto;
margin-right: auto;
display: block;
}
input {
width: 100%;
padding: 5px 14px;
border: 2px solid #201f1d;
margin-bottom: 10px;
background-color: rgba(0,0,0,.4);
outline: none;
color: #fff;
font-size: 14px;
}
input:focus {
border: 2px solid rgba(0,0,0,.4);
background-color: rgb(60,60,60);
}
form {
background-color: #fff;
padding: 20px;
color: #000;
box-shadow: 0 2px 4px 0 rgba(0,0,0,.4);
}
form p {
margin-bottom: 5px;
}
form p:nth-child(1){
margin-top: 0;
}
.panel {
margin-top: 20px;
float: none;
}
@media (min-width: 768px) {
.panel {
width: 50%;
margin-left: auto;
margin-right: auto;
}
}
@media (min-width: 1024px) {
.panel {
width: 30%;
margin-left: auto;
margin-right: auto;
}
}