dar-tau commited on
Commit
651b933
1 Parent(s): e036b8e

Create styles.css

Browse files
Files changed (1) hide show
  1. styles.css +31 -0
styles.css ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ .bubble {
3
+ border: none
4
+ border-radius: 10px;
5
+ padding: 10px;
6
+ margin-top: 15px;
7
+ margin-left: 5%;
8
+ width: 70%;
9
+ box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
10
+ }
11
+
12
+ .even_bubble{
13
+ background: pink;
14
+ }
15
+
16
+ .odd_bubble{
17
+ background: skyblue;
18
+ }
19
+
20
+ .bubble textarea {
21
+ border: none;
22
+ box-shadow: none;
23
+ background: inherit;
24
+ resize: none;
25
+ }
26
+
27
+ .explanation_accordion .svelte-s1r2yt{
28
+ font-weight: bold;
29
+ text-align: start;
30
+ }
31
+