-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtweet-clone.css
More file actions
executable file
·102 lines (84 loc) · 1.51 KB
/
tweet-clone.css
File metadata and controls
executable file
·102 lines (84 loc) · 1.51 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
* {
font-family: Helvetica, Roboto, "Segoe UI", Calibri, sans-serif;
font-size: 23px;
}
body {
background: rgb(244, 248, 249) ;
background-repeat: no-repeat;
}
.container {
padding: 30px 35px;
background: rgb(255, 255, 255);
border: 1px solid rgb(225, 232, 237);
border-radius: 5px;
}
.tw-header {
display: block;
color: #000;
font-weight: 700;
}
.tw-header img + .tw-header-name{
display: block;
margin-top: -59px;
margin-left: 58px;
}
.tw-header-name,.tw-header-button {
display: block;
margin-top: -53px;
}
.tw-header-button {
float: right;
}
.tw-header-button button {
padding: 9px 19px;
background: #fff;
border: 1.5px solid rgb(85, 172, 238);
border-radius: 5px;
font-weight: 700;
color: rgb(85, 172, 238);
}
.tw-header-button button span{
font-size: 21px;
padding-left: 5px;
}
.tw-header-name {
position: relative;
margin-top: -3px;
}
.tw-header-name .name {
display: block;
vertical-align: top;
margin-left: 13px;
}
.tw-header-name .userName {
margin-left: 7px;
color: rgb(104, 109, 129);
font-size: 20px;
}
.tw-body {
margin-top: 22px;
margin-left: 1px;
line-height: 30px;
}
.tw-body span {
display: block;
}
.tw-body span.share > * {
display: inline-block;
margin-top: 12px;
}
.tw-body .date {
margin-top: 3px;
font-size: 20px;
}
.tw-body span.share span {
margin-left: 27px;
font-size: 21px;
}
.tw-body span.share span.favorite {
margin-left: 20px;
font-size: 21px;
}
.userName, .share, .date {
color: rgb(104, 109, 129);
}