-
Notifications
You must be signed in to change notification settings - Fork 306
Expand file tree
/
Copy pathTweetBox.css
More file actions
48 lines (41 loc) · 839 Bytes
/
TweetBox.css
File metadata and controls
48 lines (41 loc) · 839 Bytes
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
.tweetBox {
padding-bottom: 10px;
border-bottom: 8px solid var(--twitter-background);
padding-right: 10px;
}
.tweetBox > form {
display: flex;
flex-direction: column;
}
.tweetBox__input {
padding: 20px;
display: flex;
}
.tweetBox__input > input {
flex: 1;
margin-left: 20px;
font-size: 20px;
border: none;
}
.tweetBox__input > input:focus {
outline: none;
}
.tweetBox__imageInput {
border: none;
padding: 10px;
}
.tweetBox__imageInput:focus {
outline: none;
}
.tweetBox__tweetButton {
background-color: var(--twitter-color) !important;
border: none !important;
color: white !important;
font-weight: 900 !important;
text-transform: inherit !important;
border-radius: 30px !important;
width: 80px;
height: 40px !important;
margin-top: 20px !important;
margin-left: auto !important;
}