forked from karimal/simple-twitter-vuejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
87 lines (77 loc) · 1.5 KB
/
main.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
75
76
77
78
79
80
81
82
83
84
85
86
87
body {
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
background-color: #e6ecf0;
margin: 0;
}
#twitter {
display: flex;
flex-direction: column;
align-items: center;
}
.tweet {
display: flex;
background-color: #fff;
width: 65%;
max-width: 900px;
min-height: 110px;
padding: 10px 20px;
border-bottom: 1px solid #e6ecf0;
margin: 0 auto;
}
header {
width: 100%;
height: 57px;
line-height: 55px;
margin-bottom: 32px;
background: #fff;
border-bottom: 1px solid #e5eff5;
}
header .inner {
max-width: 65%;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
}
.headerSection {
width: 33%;
text-align: center;
}
.headerSection:first-child {
display: flex;
justify-content: center;
}
header .link {
color: #1da1f2;
width: 50px;
border-bottom: 2px solid #1c94e0;
text-decoration: unset;
display: block;
font-weight: bold;
padding: 0 15px;
}
.search {
align-self: center;
width: 200px;
height: 35px;
padding: 10px;
background-color: #f5f8fa;
border-radius: 21px;
border: 1px solid #e6ecf0;
box-sizing: border-box;
color: #14171a;
outline: 0;
}
.tweetLink {
background-color: #1da1f2;
border: 1px solid #1da1f2;
color: #fff;
text-decoration: none;
border-radius: 100px;
padding: 6px 16px;
margin-left: 15px;
}
.tweetLink:hover {
background-color: #006dbf;
border-color: #006dbf;
}