-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (56 loc) · 959 Bytes
/
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
* {
padding: 0;
margin: 0;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.container {
background-color: #f0f0f0;
width: 100%;
min-height: 100vh;
padding-top: 1%;
padding-left: 1%;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem;
}
.header h1 {
color: #333;
}
.header button {
font-size: 1.5rem;
border: none;
outline: none;
background-color: #e44d26;
color: #fff;
padding: 0.5rem;
cursor: pointer;
/* border-radius: 0.5rem; */
}
.notes-container {
max-height: 100%;
overflow: hidden;
}
.input-box {
position: relative;
width: 90%;
min-width: 250px;
min-height: 200px;
margin: 1rem;
padding: 1rem;
background-color: #333;
color: #fff;
font-size: 1.25rem;
border-radius: 0.5rem;
outline: none;
border: none;
}
.notes-container i {
width: 25px;
position: absolute;
bottom: 15px;
right: 15px;
cursor: pointer;
}