-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
63 lines (57 loc) · 1.13 KB
/
styles.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
html body {
display: flex;
background-color: #135e5e;
justify-content: center;
margin: 0;
padding: 0;
position: absolute;
}
.window {
position: relative;
top: 50%;
left: 50%;
width: 50vw;
height: 20vh;
/* transform: translate(-50%, -50%);
max-width: 500px;
max-height: 300px; */
border: 1px solid #ccc;
background-color: rgb(173, 168, 168);
border-radius: 20px;
box-shadow: 5px 5px 10px 2px rgba(0, 0, 0, 0.5);
}
/*
.border {
align-self: flex-start;
justify-content: left;
padding: 8px;
background: rgb(1, 0, 36);
background: linear-gradient(
90deg,
rgba(1, 0, 36, 0.711922268907563) 0%,
rgba(43, 121, 213, 0.5438550420168067) 88%,
rgba(0, 104, 255, 0.6643032212885154) 100%
);
border-top-left-radius: 20px;
border-top-right-radius: 20px;
}
.er-title {
color: white;
margin: 0;
}
.er-window-content {
display: flex;
align-items: center;
padding: 8px;
}
.er-icon {
padding: 10px;
margin-right: 30px;
}
.button-container {
position: fixed;
bottom: 20px;
right: 20px;
background-color: rgb(173, 168, 168);
box-shadow: 5px 5px 10px 2px rgba(0, 0, 0, 0.5);
} */