-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmicroblog.css
50 lines (45 loc) · 1.06 KB
/
microblog.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
.entry-content .microblog-form-container {
max-width: 100%;
margin: 2em 0;
}
.entry-content #microblog-form {
display: flex;
flex-direction: column;
background: #f9f9f9;
padding: 20px;
border: 1px solid #e0e0e0;
border-radius: 5px;
}
.entry-content #microblog-form textarea {
width: 100%;
min-height: 100px;
margin-bottom: 15px;
padding: 10px;
border: 1px solid #d0d0d0;
border-radius: 4px;
font-size: 16px;
line-height: 1.4;
}
.entry-content #microblog-form select {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #d0d0d0;
border-radius: 4px;
background-color: white;
font-size: 16px;
}
.entry-content #microblog-form input[type="submit"] {
align-self: flex-start;
padding: 10px 20px;
background-color: #545454;
color: white;
border: none;
border-radius: 4px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.entry-content #microblog-form input[type="submit"]:hover {
background-color: #656565;
}