-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNote-Style.css
49 lines (49 loc) · 1.12 KB
/
Note-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
*{
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
box-sizing: border-box;
}
.container{
width: 100%;
min-height: 100vh;
background: linear-gradient(135deg, #ffffff , #9187b0 , #444ca2, #09459f , #000000);
color: #fff;
padding-top: 4%;
padding-left: 10%;
}
.container h1 img{
width: 60px;
}
.container button{
display: flex;
align-items: center;
background: linear-gradient(135deg, #ffffff , #9187b0 , #444ca2, #09459f , #000000);
color: #fff;
font-size: 16px;
outline: 0;
border: 0;
border-radius: 40px;
padding: 15px 25px;
margin: 30px 0 20px;
cursor: pointer;
}
.input-box{
position: relative;
width: 100%;
max-width: 500px;
min-height: 150px;
background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(145, 135, 176, 0.2), rgba(68, 76, 162, 0.2), rgba(9, 69, 159, 0.2), rgba(0, 0, 0, 0.5));
color: #ffffff;
padding: 20px;
margin: 20px 0 ;
outline: none;
border-radius: 5px;
}
.input-box img{
width: 25px;
position: absolute;
bottom: 15px;
right: 15px;
cursor: pointer;
}