-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
74 lines (61 loc) · 958 Bytes
/
styles.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
73
74
* {
box-sizing: border-box;
}
header {
width: 800px;
}
h1 {
width: 100%;
text-align: center;
background-color: aqua;
padding: 20px 0;
border: 3px solid #333;
}
form > * {
display: block;
}
form {
width: 800px;
background-color: aqua;
padding: 20px;
}
label,
input,
textarea {
margin-bottom: 10px;
}
textarea {
width: 700px;
resize: none;
}
#input-submit {
width: 100px;
height: 50px;
}
.tweet-container {
margin-top: 30px;
width: 800px;
background-color: aqua;
}
.checkBtn-container {
width: 100%;
padding: 20px;
background-color: bisque;
}
.btn_checkNewTweet {
padding: 10px 20px;
}
.tweet-listgroup {
padding-inline-start: 0;
padding: 0 20px;
list-style-type: none;
padding-bottom: 30px;
}
.tweet {
border-bottom: 1px solid #000;
}
.tweet-info {
display: grid;
grid-template-columns: 1fr auto auto;
column-gap: 20px;
}