-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
68 lines (60 loc) · 1000 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
64
65
66
67
68
* {
margin: 0;
padding: 0;
}
body {
background: #a4957d;
}
.container {
text-align: center;
}
h1 {
color: rgb(88, 11, 1);
}
#app {
display: grid;
grid-template-columns: repeat(auto-fill, 200px);
padding: 24px;
gap: 25px;
}
.note {
height: 200px;
box-sizing: border-box;
padding: 15px;
border: none;
border-radius: 10px;
border-color: black;
box-shadow: 0 0 7px rgba(0, 0, 0, 15);
resize: none;
font-family: sans-serif;
font-size: 16px;
color: white;
background-color: rgb(88, 11, 1);
}
.add-note {
height: 50px;
width: 100px;
border: none;
outline: none;
background: rgba(0, 0, 0, 0.1);
border-radius: 10px;
font-size: 20px;
color: beige;
cursor: pointer;
transition: background 0.2s;
}
.add-note:hover {
background: rgba(0, 0, 0, 2);
}
#clearbutton {
height: 25px;
width: 50px;
background: rgba(0, 0, 0, 1);
font-size: 10px;
color: beige;
border: none;
}
#clearbutton:hover {
background: white;
color: black;
}