From 6cb957cc1f64123851ae28e37b601fe7b92e2658 Mon Sep 17 00:00:00 2001 From: sijanec Date: Sun, 17 May 2020 15:07:30 +0200 Subject: tnx za popravljeno install skripto --- dist/css/bubbles.css | 94 ---------------------------------------------------- 1 file changed, 94 deletions(-) delete mode 100644 dist/css/bubbles.css (limited to 'dist/css/bubbles.css') diff --git a/dist/css/bubbles.css b/dist/css/bubbles.css deleted file mode 100644 index 8a19ff1..0000000 --- a/dist/css/bubbles.css +++ /dev/null @@ -1,94 +0,0 @@ -/* obviously stolen, source https://codepen.io/swards/pen/gxQmbj */ -.chat { - width: 100%; - border-left: solid 1px #EEE; - border-right: solid 1px #EEE; - /* border-bottom: solid 1px #EEE; */ - display: flex; - flex-direction: column; - padding: 10px; -} - -.messages { - margin-top: 30px; - display: flex; - flex-direction: column; -} - -.message { - border-radius: 20px; - padding: 8px 15px; - margin-top: 5px; - margin-bottom: 5px; - display: inline-block; -} - -.yours { - align-items: flex-start; -} - -.yours .message { - margin-right: 25%; - background-color: #eee; - position: relative; -} - -.yours .message.last:before { - content: ""; - position: absolute; - z-index: 0; - bottom: 0; - left: -7px; - height: 20px; - width: 20px; - background: #eee; - border-bottom-right-radius: 15px; -} -.yours .message.last:after { - content: ""; - position: absolute; - z-index: 1; - bottom: 0; - left: -10px; - width: 10px; - height: 20px; - background: white; - border-bottom-right-radius: 10px; -} - -.mine { - align-items: flex-end; -} - -.mine .message { - color: white; - margin-left: 25%; - background: linear-gradient(to bottom, var(--color-primary) 0%, var(--color-secondary) 100%); - background-attachment: fixed; - position: relative; -} - -.mine .message.last:before { - content: ""; - position: absolute; - z-index: 0; - bottom: 0; - right: -8px; - height: 20px; - width: 20px; - background: linear-gradient(to bottom, var(--color-primary) 0%, var(--color-secondary) 100%); - background-attachment: fixed; - border-bottom-left-radius: 15px; -} - -.mine .message.last:after { - content: ""; - position: absolute; - z-index: 1; - bottom: 0; - right: -10px; - width: 10px; - height: 20px; - background: white; - border-bottom-left-radius: 10px; -} \ No newline at end of file -- cgit v1.2.3