-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate.css
More file actions
51 lines (45 loc) · 1.01 KB
/
create.css
File metadata and controls
51 lines (45 loc) · 1.01 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
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background: linear-gradient(#fbfbf3 0%, #ffffff 50%, #ffffff 100%);
background-size: cover;
background-repeat: no-repeat;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
overflow: hidden;
width: 300px;
height: 100vh;
display:flex;
}
#message-dropdown {
height:200px;
}
#message {
text-align: center;
margin: 10px;
font-size: 24px;
font-weight: bold;
color: black;
font-family: Lucida Console, Monospace;
width: 100%;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.dropdown-option {
color: black;
padding: 14px;
border: 1px solid #ddd;
border-radius: 5px;
background-color: #edf0ba;
max-height: 50px;
margin: 6px;
overflow: scroll;
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
cursor: pointer
}
.dropdown-option::-webkit-scrollbar {
display: none;
}