-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdesign.css
73 lines (66 loc) · 1.18 KB
/
design.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
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap");
body {
width: 600px;
margin-left: 35%;
padding: 0;
font-family: "Poppins", sans-serif;
background-color: #d8d535;
}
form {
color: #1b1b1b;
font-size: 22px;
}
input[type="text"] {
background-color: #d2d2d2;
border: none;
border-radius: 1em;
padding: 0.2em;
}
.smlBtn {
background-color: #ddd;
color: #000000;
border: none;
margin: 0.2em;
padding: 0.4em;
border-radius: 0.3em;
cursor: pointer;
}
h1 {
color: #1b1b1b;
font-size: 50px;
}
h2 {
color: #1b1b1b;
font-size: 42px;
letter-spacing: -2px;
text-align: left;
}
.list {
color: #555;
font-size: 22px;
padding: 0 !important;
width: 500px;
}
.list li {
list-style: none;
border-bottom: 1px dotted #ccc;
text-indent: 25px;
height: auto;
padding: 10px;
text-transform: capitalize;
color: #2e2e2e;
background: rgba(255, 255, 255, 0.2);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5.7px);
-webkit-backdrop-filter: blur(5.7px);
margin: 0.4em;
}
li a {
float: right;
text-decoration: none;
color: rgb(37, 170, 11);
}
li a:hover {
color: red;
}