forked from code-differently/Twitter-Clone-Lab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
83 lines (67 loc) · 1.15 KB
/
style.css
File metadata and controls
83 lines (67 loc) · 1.15 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
* {
box-sizing: border-box;
margin:0;
padding:0;
}
h1 {
text-align: center;
color: blue;
}
.tweet {
padding: 1rem;
width: 598px;
height: 262px;
display: flex;
flex-direction: column;
margin: auto;
border: 2px solid black;
margin-bottom: 1.25rem;
}
.tweet__bio {
margin-bottom: 1rem;
display: flex;
}
.tweet__bio__picture {
height: 75px;
width:75px;
border-radius: 50%;
background-color: grey;
}
.tweet__content {
justify-content: center;
font-size: 1.25rem;
margin-top: 50px;
}
.tweet__time-stamp {
display: flex;
align-items: flex-end;
border-bottom: 1px solid rgba(0,0,0,.3);
padding-bottom: .5rem;
margin-top:1rem;
}
.tweet__time-stamp p {
margin-right: 1rem;
}
.tweet__social {
display: flex;
margin-top: 1rem;
align-items: center;
padding-bottom: 1rem;
}
.tweet__social p {
margin-right: 1rem;
}
.tweet__bio__name {
justify-content: center;
display: flex;
flex-direction: column;
margin-left:3rem;
margin-top: -70px;
margin-left: 90px;
}
.blue-link{
color: blue;
}
.at-name{
color: #8d8686c4;
}