-
Notifications
You must be signed in to change notification settings - Fork 175
/
Copy pathinput.css
61 lines (52 loc) · 889 Bytes
/
input.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
body {
font-family: 'Helvetica', sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(to bottom right, #6fffe9, #00e5ff);
}
.container {
max-width: 600px;
margin: 20px auto;
padding: 20px;
border-radius: 10px;
}
img.logo {
width: 50px;
}
img.post {
width: 100%;
}
img {
width: 100%;
border-radius: 10px;
padding: 2px;
}
p {
margin: 15px 0;
font-size: 16px;
}
input {
width: 100%;
padding: 10px;
border: 1px solid #dbdbdb;
border-radius: 5px;
box-sizing: border-box;
font-size: 16px;
margin-top: 5px;
}
.submit {
background-color: #0095f6;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
margin-top: 10px;
}
.submit:disabled {
background-color: #b2dffc;
}
.messages {
margin-bottom: 20px;
}