-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
92 lines (80 loc) · 1.52 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
body {
margin: 0;
background: linear-gradient(to left, lightblue, lightgreen);
font-family: "Courier New", Courier, monospace;
}
.heading {
color: darkblue;
text-align: center;
padding-top: 10px;
font-size: 35px;
}
.info-text {
text-align: center;
color: darkblue;
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 0 3px rgba(0, 0, 0, 0.3);
font-size: 18px;
height: 200px;
color: darkblue;
border: none;
outline: none;
background-color: rgba(255, 255, 255, 0.2);
box-sizing: border-box;
}
.note::placeholder {
color: grey;
opacity: 30%;
}
.note:hover,
.note:focus {
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
transition: all 300ms ease;
}
.btn {
height: 200px;
border-color: rgba(255, 255, 255, 0.37);
background: rgba(255, 255, 255, 0.27);
border-radius: 15px;
font-size: 70px;
font-weight: 700;
color: rgba(0, 0, 0, 0.3);
cursor: pointer;
}
.btn:hover {
background: rgba(255, 255, 255, 0.55);
color: rgba(0, 0, 0, 0.6);
transition: all 300ms ease;
}
/* width */
::-webkit-scrollbar {
width: 5px;
border-radius: 25px;
}
/* Track */
::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 25px;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #888;
border-radius: 25px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #555;
border-radius: 25px;
}