-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyle.css
More file actions
148 lines (147 loc) · 2.79 KB
/
style.css
File metadata and controls
148 lines (147 loc) · 2.79 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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
position: relative;
width: 100%;
height: 100vh;
padding: 1rem;
/* display: flex; */
/* margin-top: 2%; */
/* align-items: center;
justify-content: start;
flex-direction: column; */
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
font-weight: 24px;
background-image: linear-gradient(
to right,
rgb(189, 135, 255),
rgba(0, 255, 208, 0.608)
);
/* border: 1px solid red; */
}
.Create-container {
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
#addNotes {
cursor: pointer;
padding: 1rem;
color: #000;
font-weight: 600;
letter-spacing: 2px;
border-radius: 5px;
outline: none;
border: none;
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.441);
background-color: #adff2f;
}
#addNotes:hover{
box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.702);
}
.notes-container {
width: 100%;
margin-top: 5%;
height: auto;
display: flex;
align-items: center;
justify-content: start;
flex-wrap: wrap;
gap: 20px;
position: relative;
}
.notes-container textarea {
background-color: #f1f1f1;
font-size: 1.7rem;
text-align: center;
color: #000;
resize: none;
font-style: italic;
letter-spacing: 1px;
border-radius: 20%;
}
.none {
display: none;
}
.main-container {
position: absolute;
top: 30%;
left: 0;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.containers {
position: relative;
}
form {
/* border: 1px solid red; */
position: relative;
width: 275px;
height: 275px;
}
textarea {
box-shadow: 15px 15px 10px rgba(0, 0, 0, 0.45);
outline: none;
border-radius: 15px;
border: none;
font-size: 1rem;
width: 275px;
height: 275px;
padding: 40px 25px 25px 25px;
}
form button {
color: gray;
cursor: pointer;
}
#remove {
position: absolute;
right: 17%;
top: 4%;
width: 10%;
background-color: transparent;
border: none;
}
#submit {
width: 10%;
border: none;
background-color: transparent;
position: absolute;
right: 5%;
top: 4%;
}
#submit:hover{
color: #000;
text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.307);
}
#remove:hover{
color: #000;
text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.307);
}
.box-container {
position: relative;
width: 275px;
height: 275px;
}
.delete {
position: absolute;
top: 1%;
font-size: 1.5rem;
font-weight: 600;
right: 45%;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
color: gray;
width: 10%;
cursor: pointer;
border: none;
background-color: transparent;
}
.delete:hover{
color: #000;
text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.307);
}