-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
87 lines (75 loc) · 1.46 KB
/
Copy pathstyles.css
File metadata and controls
87 lines (75 loc) · 1.46 KB
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
body {
display: flex;
flex-direction: column;
min-height: 100vh;
margin: 0;
font-family: system-ui, sans-serif;
font-size: 75%;
}
h1 {
background-image: linear-gradient(to top, rgb(3, 44, 86), rgb(5, 6, 91), rgb(24, 0, 95));
text-align: center;
padding: 8px;
margin: 0;
z-index: 100;
font-family: Arial, Helvetica, sans-serif;
}
.scrollable-content {
flex: 1;
overflow-y: auto;
padding: 10px;
background-color: #f7f7f7;
}
.input {
background-color: white;
padding: 5px;
display: flex;
z-index: 10;
}
.code {
background-color: #f2f2f2;
padding: auto;
z-index: 8;
}
.input button:hover {
background-color: #0ada30;
}
.toggleWidth button:hover {
background-color: #0ada30;
padding: 4px;
width: 70px;
}
.glyphicon.glyphicon-comment {
margin-left: 5px;
cursor: pointer;
}
.glyphicon.glyphicon-thumbs-up.liked {
color: rgb(0, 85, 255);
}
.sent-message {
background-color: #e9f0ff;
border-radius: 5px;
padding: 10px;
margin-bottom: 10px;
}
.reply {
background-color: #f2f2f2;
border-radius: 5px;
padding: 10px;
margin-bottom: 10px;
margin-left: 20px;
}
.toggle-width {
position: absolute;
top: 8px;
right: 10px;
background-color: rgba(255, 255, 255, 0.5);
border: none;
padding: 5px;
border-radius: 5px;
font-size: 12px;
cursor: pointer;
}
.toggle-width:hover {
background-color: rgba(255, 255, 255, 0.7);
}