-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
101 lines (99 loc) · 1.79 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
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
*{
margin: 0;
padding:0;
box-sizing:border-box;
}
h1{
text-align: center;
color:rgb(0, 63, 96);
font-size: 50px;
}
.container{
text-align: center;
display:"flex";
flex-direction: column;
}
ul.todos {
display: inline-block;
text-align: left;
}
main{
min-height:100vh;
background:linear-gradient(to right top,#65dfc9, #6cdbeb);
display:flex;
align-items: center;
justify-content: center;
}
.glass{
background: white;
margin-top: 5%;
margin-bottom: 5%;
min-height:80vh;
width:60%;
background: linear-gradient(to right bottom, rgba(255,255,255,0.7),rgba(255,255,255,0.3));
border-radius: 2rem;
z-index: 2;
backdrop-filter: blur(2rem);
}
.circle1,.circle2{
background:white;
background: linear-gradient(to right bottom, rgba(255,255,255,0.9),rgba(255,255,255,0.1));
height:15rem;
width:15rem;
padding: 50px;
}
.circle1{
top:5%;
right:5%;
position: absolute;
}
.circle2{
bottom:5%;
position: fixed;
left:5%;
}
input{
position: relative;
display: inline;
font-size: 20px;
box-sizing: border-box;
transition: .5s;
}
input[type="text"]{
background:#fff;
width: 340px;
height: 50px;
border: none;
outline: none;
margin:15px;
padding:0 25px;
border-radius: 25px 0 0 25px;
}
#btn1{
position: relative;
border-radius: 0 25px 25px 0;
width:150px;
height:50px;
border:none;
outline:none;
cursor:pointer;
background:#ffc107;
color: #fff;
font-size: 20px;
}
ul{
position: relative;
width:450px;
margin:10px auto 0;
padding:10px;
box-sizing: border-box;
}
ul li{
display: flex;
background:rgb(117, 237, 246);
padding:10px 20px;
color:rgb(1, 27, 37);
font-size: 30px;
margin:5px 0;
transition: .5s;
}