forked from sendbird/sendbird-javascript-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
123 lines (116 loc) · 2.13 KB
/
index.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
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
118
119
120
121
122
123
body {
font-family: 'Exo 2';
-webkit-font-smoothing: antialiased;
background-color: #ffffff;
}
a, a:link, a:visited, a:hover, a:active {
text-decoration: none !important;
color: initial;
}
.container {
width: 900px;
height: 100%;
margin: 0 auto;
padding: 50px 0;
}
.top {
width: 900px;
text-align: center;
font-size: 36px;
font-weight: 600;
}
.hr {
width: 100%;
height: 0;
margin: 26px 0;
border-top: 1px solid #8e8e8e;
}
.content {
width: 900px;
height: 100%;
margin-bottom: 20px;
}
.item {
display: inline-block;
width: 100%;
box-sizing: border-box;
padding: 20px;
border: 1px solid #2C2D30;
border-radius: 4px;
cursor: pointer;
}
.item:hover {
border: 1px solid #6742d6;
}
.item-image {
width: 240px;
height: 150px;
float: left;
border-radius: 4px;
background-size: 240px 150px;
background-position: center center;
background-repeat: no-repeat;
}
.basic {
background-image: url('https://dxstmhyqfqr1o.cloudfront.net/js-sample/basic-sample.png');
}
.widget {
background-image: url('https://dxstmhyqfqr1o.cloudfront.net/js-sample/widget-sample-1.png');
}
.live-chat {
background-image: url('https://dxstmhyqfqr1o.cloudfront.net/js-sample/live-chat-sample.png');
}
.rn-android {
background-image: url('https://dxstmhyqfqr1o.cloudfront.net/js-sample/rn-android.png');
background-size: 75px 150px;
background-color: #f5f5f5;
}
.item-info {
position: relative;
width: calc(100% - 280px);
height: 150px;
float: right;
}
.info-title {
font-size: 24px;
margin-bottom: 10px;
}
.info-desc {
font-size: 16px;
opacity: 0.5;
}
.info-button {
position: absolute;
bottom: 0;
right: 0;
text-align: right;
display: inline-block;
width: 100%;
}
.button {
float: right;
width: 100px;
font-size: 16px;
height: 30px;
text-align: center;
line-height: 30px;
border-radius: 4px;
margin-left: 10px;
cursor: pointer;
border: 1px solid #2C2D30;
}
.button > i {
margin-right: 8px;
}
.button:hover {
border: 1px solid #6742d6;
color: #6742d6;
}
.disable {
cursor: default;
opacity: 0.4;
}
.button.disable:hover {
border: 1px solid #2C2D30;
color: initial;
}