From b9fb510006c46f1a04c68990501122b6958f1216 Mon Sep 17 00:00:00 2001 From: yanas Date: Tue, 13 Sep 2016 10:47:22 -0500 Subject: [PATCH] Adds ringing.scss, which was missing --- css/ringing/_ringing.scss | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 css/ringing/_ringing.scss diff --git a/css/ringing/_ringing.scss b/css/ringing/_ringing.scss new file mode 100644 index 000000000..6112d8050 --- /dev/null +++ b/css/ringing/_ringing.scss @@ -0,0 +1,37 @@ +.ringing { + display: block; + left: 0; + top: 0; + width: 100%; + height: 100%; + position: fixed; + z-index: $overlayZ; + //background: linear-gradient(transparent, #000); + background: $defaultBackground; /* Old browsers */ + opacity: 0.8; + + &__content { + position: absolute; + width: 400px; + height: 250px; + left: 50%; + top: 50%; + margin-left: -200px; + margin-top: -125px; + font-weight: 400; + font-size: 14px; + text-align: center; + } + + &__avatar { + width: 100px; + height: 100px; + border-radius: 50%; + } + + &__caller-info { + .mention { + color: #333; + } + } +} \ No newline at end of file