-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
117 lines (117 loc) · 2.4 KB
/
styles.css
File metadata and controls
117 lines (117 loc) · 2.4 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
110
111
112
113
114
115
116
117
*{
box-sizing: border-box;
}
body{
font-family: 'Arial', 'Helvetica', sans-serif;
color: #333;
}
a{
color: purple;
}
.container{
position: relative;
width: 70%;
max-width: 1024px;
min-height: 300px;
margin: auto;
margin-top: 150px;
border-radius: 5px;
border: 1px solid #ddd;
}
section{
padding: 20px;
overflow: hidden;
}
.main{
position: relative;
width: 60%;
padding: 35px 10px;
float: left;
overflow: hidden;
}
.main .card{
padding: 15px;
border-right: 1px solid #ddd;
}
.main .avatar{
display: flex;
margin-top: -5px;
margin-right: 10px;
height: 75px;
width: 75px;
float: left;
font-size: 28px;
}
.main header{
font-size: 22px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.main .sub-header{
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
.secondary{
position: relative;
width: 40%;
float: left;
}
.secondary .card{
text-align: center;
overflow: hidden;
white-space: nowrap;
}
.secondary header{
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.secondary .sub-header{
display: none;
}
.avatar{
display: inline-flex;
margin-top: 12.5px;
justify-content: center;
align-items: center;
font: normal normal normal 14px/1 FontAwesome;
font-size: 14px;
color: #fff;
background: #0083cf;
border-radius: 100px;
height: 45px;
width: 45px;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.paper-plane::before{
content: '\f1d8';
}
.child::before{
content: '\f1ae';
}
.pied-piper::before{
content: '\f2ae';
}
footer{
display: flex;
justify-content: space-between;
padding: 20px 15px;
border-top: 1px solid #ddd;
overflow: hidden;
font-size: 13px;
}
footer .group{
float: left;
}
footer .group:last-of-type{
float: right;
}
footer .group .item{
display: block;
}