-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
112 lines (97 loc) · 1.73 KB
/
style.css
File metadata and controls
112 lines (97 loc) · 1.73 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
html{
height: 100%;
width: 100%;
}
body{
background-color:rgb(223, 221, 221);
background-size: cover;
background-blend-mode: overlay;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 55px;
width: 350px;
height: 570px;
background-color: white;
border: 1px solid rgb(230, 230, 230);
box-shadow: 10px 10px 20px 1px black;
border-radius: 5px;
font-family: 'Slabo 27px', serif;
}
.container h1 {
padding-top: 20px;
margin: 0px;
font-size: 40px;
color: #1dafcc;
font-weight: bold;
}
.container h2 {
margin-top: 5px;
font-size: 12px;
height: 20px;
color: #1dafcc;
}
.container ul {
margin-top: 10px;
margin-bottom: 0px;
list-style-type: none;
padding: 0px;
width: 330px;
height: 340px;
font-size: 16px;
overflow:auto;
}
.container li {
display: block;
position: relative;
padding: 5px;
border: 1px solid rgb(233, 231, 231);
border-radius: 4px;
height: 40px;
outline: none;
margin: 3px;
color: grey;
}
.container li:hover {
background-color: rgb(21, 159, 223);
color: white;
}
.container div {
position: absolute;
display: flex;
justify-content: space-between;
width: 40px;
right:10px;
top: 20%;
}
.container i:active {
color: yellow;
font-size: 18px;
}
.container input {
margin: 10px;
width: 330px;
height: 40px;
padding-left: 10px;
border: 1px solid lightgrey;
border-radius: 2px;
}
.container button {
width: 330px;
height: 50px;
background-color: #1dafcc;
color: white;
border-radius: 4px;
border: none;
}
.container button:active {
box-shadow: 2px 2px 1px rgba(61,3,124,1);
}
.swal-modal {
background-color: white;
border: 3px solid white;
width: 330px;
text-align: center;
}