-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
106 lines (93 loc) · 1.68 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
*{
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
box-sizing: border-box;
}
.body{
display: flex;
flex-direction: row;
}
.container{
width: 100%;
min-height: 100vh;
background: linear-gradient(135deg, #f79aff, #95c0ff);
color: #fff;
padding: 4% 0 0 10%;
}
.container h1{
display: flex;
align-items: center;
font-size: 35px;
font-weight: 600;
}
.container h1 img{
width: 60px;
}
.container button img{
width: 25px;
margin-right: 8px;
}
.container button{
display: flex;
align-items: center;
background: linear-gradient(#9418fd, #571094);
color: #fff;
font-size: 16px;
outline: 0;
border: 0;
border-radius: 40px;
padding: 15px 25px;
margin: 30px 0 20px;
cursor: pointer;
}
.notes-container{
display: flex;
flex-wrap: wrap;
justify-content: left;
max-height:60%;
height: 330px;
overflow-y: auto;
}
.input-box{
position: relative;
width: 100%;
max-width: 400px;
min-height: 150px;
background: #fff;
color: #333;
padding: 20px;
margin: 20px 5px;
outline: none;
border-radius: 5px;
cursor: text;
}
.input-box img{
width: 25px;
position: absolute;
bottom: 15px;
right: 15px;
cursor: pointer;
}
h3{
color: #fff;
font-size: 15px;
text-align: center;
position: fixed;
bottom: 18px;
align-items: center;
background: linear-gradient(#9418fd, #571094);
outline: 0;
border: 0;
border-radius: 40px;
padding: 10px 15px;
}
.footer{
display: flex;
justify-content: center;
align-items: center;
}
h3 img{
height: 25px;
vertical-align: middle;
}