-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
91 lines (84 loc) · 1.66 KB
/
main.css
File metadata and controls
91 lines (84 loc) · 1.66 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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body{
background-image: linear-gradient(rgb(182, 182, 237),rgb(153, 208, 220));
width: 100%;
min-height: 100vh;
}
.title{
width: 70%;
font-size: 30px;
font-weight: bold;
text-align: center;
margin: 50px auto ;
}
.input-con{
display: flex;
align-items: center;
width: 50%;
margin: auto;
height: 40px;
}
.input-data{
width: 90%;
height: 40px;
border-radius: 6px;
}
.input-data::placeholder{
text-align: center;
font-size: 20px;
}
.input-data:focus{
border: 5px solid #b3eaf7;
}
.btn{
width: 10%;
height: 40px;
border-radius: 6px;
background-image: linear-gradient(rgb(201, 201, 255),rgb(251, 183, 255));
padding:18px;
}
.btn:hover{
background-image: linear-gradient(rgb(82, 229, 255),rgb(165, 255, 48));
}
.list{
width: 40%;
margin: 30px auto;
align-items: center;
padding-top: 20px;
font-size: 30px;
overflow: hidden;
}
ul{
display: flex;
flex-direction: column;
}
li{
display: flex;
justify-content: space-between;
border: 1px solid rgb(241, 255, 113);
margin: 5px 0;
padding: 2px 10px;
border-radius: 10px;
align-items: center;
background-image: linear-gradient(rgb(174, 209, 217),rgb(203, 203, 242));
}
i{
font-size: 20px;
margin-top: 5px;
}
p{
font-family: 'Poppins', sans-serif;
}
@media all and (max-width: 640px) {
.input-con{
width: 80%;
}
.btn{
padding: 0px;
}
}