-
Notifications
You must be signed in to change notification settings - Fork 0
/
modal.css
101 lines (99 loc) · 1.74 KB
/
modal.css
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/* Modal Base Styles */
.modal-content {
color: white;
background: var(--background);
}
.modal-header {
font-weight: bold;
border: none;
background: var(--dark);
}
.modal-label {
font-size: 0.9rem;
color: var(--primary);
display: inline-block;
margin-bottom: 0.5rem;
}
.modal-input {
background: none;
color: white;
border: none;
font-size: 1.25rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.12);
display: block;
width: 100%;
padding: 0 0 0.5rem 0;
}
.modal-input:focus {
outline: 0;
}
.modal-footer {
border: none;
}
/* Chat Room Modal */
#chat-list {
background: var(--grey);
padding: 8px 4px;
width: 100%;
color: #e4e4e4;
border: none;
border-radius: 5px;
margin: 0 0 16px 0;
font-size: 18px;
}
.chat-option-item {
list-style: none;
text-decoration: underline;
transition: color ease 0.2s;
}
.chat-option-item:hover {
cursor: pointer;
color: grey;
transition: color ease 0.2s;
}
/* Profile Modal */
#profileAvatar {
width: 100%;
display: flex;
gap: 0.5rem;
}
.avatar-wrap {
background-color: transparent;
padding: 0.25rem;
border-radius: 1rem;
color: white;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
border: 2px solid transparent;
transition: all ease 0.3s;
}
.avatar-wrap[selected] {
border-color: var(--primary);
}
.avatar-wrap:hover {
cursor: pointer;
background: rgba(255, 255, 255, 0.08);
transition: all ease 0.3s;
}
.avatar-wrap img {
height: auto;
width: 100%;
vertical-align: middle;
border-style: none;
}
.request-result-message {
font-size: 0.9rem;
flex-direction: column;
display: flex;
justify-content: center;
text-align: center;
margin-top: 6px;
}
.success {
color: #c5c5c5;
}
.error {
color: red;
}