-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
73 lines (71 loc) · 1.37 KB
/
Copy pathstyle.css
File metadata and controls
73 lines (71 loc) · 1.37 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
*{
margin: 0;
padding: 0;
font-family: "poppins", sans-serif;
box-sizing: border-box;
}
.container{
width: 100%;
min-height: 100vh;
background: linear-gradient(135deg, #da7d90, #9854ed);
color: #fff;
padding: 40px;
display: flex;
flex-direction: column;
align-items: center;
}
.notes-container{
width:100%;
max-width: 500px;
}
.container h1{
display: flex;
align-items: center;
justify-content: center;
font-size: 35px;
font-weight: 600;
}
.container h1 img{
width: 80px;
}
.container button img{
width: 25px;
margin-right:8px;
}
.container button{
display:inline-flex;
align-items: center;
background: linear-gradient(#9418fd, #571094);
color: #fff;
font-size: 12px;
outline: 0;
border: 0;
border-radius: 25px;
padding: 3px 12px;
margin: 20px 0 10px;
cursor: pointer;
width:auto;
}
.container button img{
width: 18px;
margin-right: 6px;
}
.input-box{
position: relative;
width: 100%;
max-width: 500px;
min-height: 100px;
background: #fff;
color: #333;
padding: 20px;
margin: 20px 0;
outline:none;
border-radius: 10px;
caret-color: black;
}
.input-box img{
width: 25px;
position: absolute;
bottom: 15px;
right: 15px;
}