-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
executable file
·91 lines (76 loc) · 1.66 KB
/
style.scss
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
/**************************************************/
/******************* variables ********************/
/**************************************************/
$orange: #FF5F19;
$white: #FFFFFF;
$main: #938F8D;
$mainTitles: #5A5655;
$lightGray: #D1CDCB;
$darkGray: #979797;
/**************************************************/
/***************** general styles *****************/
/**************************************************/
*,
*::after,
*::before {
box-sizing: border-box;
}
body {
text-align: center;
font-family: "Gotham Rounded", Helvetica, sans-serif;
color: $main;
max-width: 700px;
margin: 0 auto;
padding: 20px;
}
a {
color: $orange;
text-decoration: none;
}
.logo {
width: 63px;
}
.animation-container {
margin: 70px auto 100px;
}
/**************************************************/
/***************** layout specific ****************/
/**************************************************/
/* These are copied from the app's UI site */
.video_user {
float:left;
position:relative;
width:64px;
height:69px;
color:#938f8d;
text-align:center;
font-size:12px;
font-weight:300;
padding:0px 0px 0px 0px;
margin:0px 4px 10px 4px;
}
.video_user img {
width:50px;
height:50px;
border-radius: 50%;
}
/* Presentational specific: don't copy these on production! */
.users_row {
width: 300px;
height: auto;
margin: 50px auto;
text-align: center;
}
.video_user {
float: none;
display: inline-block;
}
/* A saner way to style the name text. This will need to be incorporated in production stylesheets. */
.caller_name1 {
width: 100%;
margin-top: 6px;
overflow: hidden;
text-overflow: ellipsis;
color: #F9F9F9;
text-shadow: 0 0 2px rgba(20,20,20,.8);
}