-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
80 lines (71 loc) · 1.17 KB
/
style.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
color: white;
}
body {
background-color: #30336b;
}
.banner {
margin: 0;
width: 100%;
height: 300px;
background: linear-gradient(
167deg,
rgba(131, 58, 180, 1) 14%,
rgba(29, 253, 251, 1) 45%,
rgba(252, 176, 69, 1) 74%
);
}
.btn {
width: 120px;
}
.inputbox {
width: 100%;
height: 4rem;
border: none;
border-radius: 15px;
outline: white;
background-color: #30336b;
font-weight: 700;
}
.container {
max-width: 100px;
min-width: 500px;
position: relative;
top: -15rem;
background-color: #151741;
opacity: 0.9;
padding: 0.1rem 1.1rem 0;
border-radius: 15px;
padding: 0.3rem 0.5rem;
}
.styleBtn {
color: white;
margin-bottom: 0.5rem;
font-weight: 700;
text-transform: capitalize;
padding: 0.8rem;
background-color: #0096ff;
opacity: 0.8;
border-radius: 15px;
font-size: 1.1rem;
text-decoration-color: red;
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem;
}
.styleBtn div {
width: 410px;
word-wrap: break-word;
}
h1 {
position: relative;
top: -16.4rem;
color: black;
}
.fa-trash {
cursor: pointer;
}