Browse Source

Adds ringing.scss, which was missing

master
yanas 8 years ago
parent
commit
b9fb510006
1 changed files with 37 additions and 0 deletions
  1. 37
    0
      css/ringing/_ringing.scss

+ 37
- 0
css/ringing/_ringing.scss View File

1
+.ringing {
2
+    display: block;
3
+    left: 0;
4
+    top: 0;
5
+    width: 100%;
6
+    height: 100%;
7
+    position: fixed;
8
+    z-index: $overlayZ;
9
+    //background: linear-gradient(transparent, #000);
10
+    background: $defaultBackground; /* Old browsers */
11
+    opacity: 0.8;
12
+
13
+    &__content {
14
+        position: absolute;
15
+        width: 400px;
16
+        height: 250px;
17
+        left: 50%;
18
+        top: 50%;
19
+        margin-left: -200px;
20
+        margin-top: -125px;
21
+        font-weight: 400;
22
+        font-size: 14px;
23
+        text-align: center;
24
+    }
25
+
26
+    &__avatar {
27
+        width: 100px;
28
+        height: 100px;
29
+        border-radius: 50%;
30
+    }
31
+
32
+    &__caller-info {
33
+        .mention {
34
+            color: #333;
35
+        }
36
+    }
37
+}

Loading…
Cancel
Save