forked from sendbird/sendbird-javascript-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
92 lines (90 loc) · 1.83 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
body {
margin: 0;
-webkit-font-smoothing: antialiased;
}
a, a:link, a:visited, a:hover, a:active {
text-decoration: none !important;
color: initial;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
font-family: 'Exo 2';
background: #f1f2f6;
overflow: hidden;
overflow-y: auto;
}
.container .title {
font-size: 32px;
font-weight: 100;
color: #54a;
text-align: center;
margin-top: 20px;
}
.container .platform {
display: flex;
flex: 1;
flex-direction: row;
flex-grow: 1;
width: 1080px;
padding: 15px;
}
.container .platform .platform-item {
flex: 1;
margin: 10px;
}
.container .platform .platform-item .label {
font-size: 20px;
font-weight: 200;
margin-bottom: 20px;
text-align: center;
}
.container .platform .platform-item .sample {
text-align: center;
margin: 10px;
background: #fff;
border-radius: 8px;
box-shadow: 1px 1px 1px #ddd;
overflow: hidden;
}
.container .platform .platform-item .sample .thumbnail {
width: 100%;
height: 240px;
background-color: #333;
background-size: contain;
background-repeat: no-repeat;
background-position: center;
}
.container .platform .platform-item .sample .detail .name {
font-size: 16px;
font-weight: 500;
color: #54a;
background: #fff;
padding: 15px;
}
.container .platform .platform-item .sample .buttons {
display: flex;
flex-direction: row;
}
.container .platform .platform-item .sample .button {
flex: 1;
text-align: center;
font-size: 15px;
color: #fff;
padding: 10px 0;
background: #54a;
}
.container .platform .platform-item .sample .button:hover {
cursor: pointer;
background: #65b;
}
.container .platform .platform-item .sample .button .fas,
.container .platform .platform-item .sample .button .fab {
margin-right: 3px;
}