-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
109 lines (91 loc) · 1.42 KB
/
styles.css
File metadata and controls
109 lines (91 loc) · 1.42 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
103
104
105
106
107
108
109
html, body {
margin: 0;
padding: 0;
}
body {
background-color: #f5f5f5;
}
.container {
max-width: 700px;
margin: 0 auto;
}
.header {
background-color: #000;
}
.header h1 {
font-family: 'Source Sans Pro', sans-serif;
font-size: 32px;
font-weight: 200;
color: #fff;
margin: 0;
padding: 7px 0;
}
.notification {
position: relative;
text-align: right;
}
.notification img {
padding: 10px 0;
}
.notification-menu {
position: absolute;
top: 50px;
left: -150px;
background-color: #e5e5e5;
border: #989898;
padding: 10px;
list-style: none;
width: 250px;
display: none;
text-align: left;
}
.notification-menu li {
background-color: #fff;
padding: 10px;
margin-bottom: 10px;
}
.notification-menu .avatar {
padding: 2px 0;
}
.notification-menu h3 {
font-size: 15px;
margin: 0 0 5px 0;
display: inline;
}
.notification-menu p {
margin-bottom: 0;
font-size: 14px;
}
.post {
background-color: #fff;
padding: 20px;
margin: 20px 0;
box-shadow: 0 2px 3px rgba(0,0,0,.1);
}
.post .avatar {
padding-right: 10px;
padding-bottom: 5px;
}
.post h3 {
font-size: 16px;
margin-top: 0;
display: inline;
}
.post p {
font-size: 14px;
}
.post p + img {
width: 100%;
margin-bottom: 15px;
}
.btn {
color: #333;
border-color: #ccc;
background-color: transparent;
font-weight: 600;
}
.btn-like {
background-color: #CC0000;
border-color: #B20000;
color: #fff;
}