-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (62 loc) · 1.37 KB
/
style.css
File metadata and controls
63 lines (62 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
@import url("https://fonts.googleapis.com/css2?family=Creepster&family=Delicious+Handrawn&family=Port+Lligat+Sans&family=Roboto:wght@300&display=swap");
body {
margin: 0;
background: linear-gradient(to left, #ffd89b, #19547b);
font-family: "Port Lligat Sans", sans-serif;
}
.heading {
color: #02111b;
text-align: center;
padding-top: 10px;
font-size: 35px;
}
.info-text {
text-align: center;
color: #02111b;
font-size: 18px;
}
.app {
display: grid;
grid-template-columns: repeat(auto-fill, 300px);
gap: 40px;
justify-content: center;
padding: 50px;
}
.note {
padding: 17px;
border-radius: 15px;
resize: none;
box-shadow: 0 10px 10px rgba(0, 0, 0, 0.4);
font-size: 18px;
height: 200px;
color: #02111b;
font-family: "Port Lligat Sans", sans-serif;
outline: none;
border: none;
background-color: rgba(255, 255, 255, 0.13);
box-sizing: border-box;
}
.note::placeholder {
opacity: 90%;
}
.note:hover,
.note:focus {
box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
transition: all 0.3s ease;
}
.btn {
height: 200px;
border-radius: 15px;
border-color: rgba(255, 255, 255, 0.37);
background: rgba(255, 255, 255, 0.37);
outline: none;
font-size: 80px;
font-weight: 700;
color: rgba(0, 0, 0, 0.5);
cursor: pointer;
}
.btn:hover {
background:rgba(255, 255, 255, 0.3);
color: rgba(255, 255, 255, 0.29);
transform: all 0.3s ease;
}