-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
150 lines (127 loc) · 3.33 KB
/
style.css
File metadata and controls
150 lines (127 loc) · 3.33 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
149
150
@import url('https://fonts.googleapis.com/css2?family=Shadows+Into+Light&display=swap');
body {
background-color: azure;
}
* {
padding: 0;
margin: 0;
}
nav {
width: 100%;
height: 60px;
background-color: rgb(76, 132, 188);
color: whitesmoke;
display: flex;
align-items: center;
justify-content: space-between;
font-family: 'Shadows Into Light', cursive;
}
input[type=text] {
border-radius: 40%;
justify-content: center;
text-align: center;
height: 20px;
}
.logo {
width: 30%;
font-family: 'Shadows Into Light', cursive;
padding-left: 100px;
font-weight: bolder;
letter-spacing: 2px;
}
.menu {
width: 30%;
display: flex;
list-style: none;
align-items: center;
justify-content: flex-end;
}
.menu li {
margin: 0px 60px;
font-size: 20px;
font-weight: 700;
}
.menu li:hover {
background: rgb(17, 17, 18);
/* height: fit-content; */
width: 30%;
cursor: pointer;
border-radius: 10%;
}
.addnotes {
border-radius: 20%;
width: 80%;
height: fit-content;
margin: 50px auto;
background-color: rgb(76, 132, 188);
display: flex;
flex-direction: column;
padding: 20px;
}
.addnotes h2 {
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-size: 30px;
font-weight: bold;
margin-bottom: 10px;
text-align: center;
color: rgb(7, 8, 8);
}
.addnotes textarea {
resize: none;
background-color: rgba(23, 218, 228, 0.808);
border-radius: 20%;
font-size: 16px;
margin-bottom: 20px;
padding: 20px;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.btn {
width: 30%;
padding: 5px 10px;
justify-content: center;
display: flex;
margin: auto;
border-radius: 20%;
cursor: pointer;
background-color: rgba(23, 218, 228, 0.808);
height: auto;
font-size: 20px;
font-weight: bold;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.btn:hover {
background-color: rgb(73, 139, 215);
}
.notes {
width: 70%;
margin: 20px auto;
display: flex;
flex-direction:column;
justify-content: center;
align-items: center;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.card {
width: 70%;
height: 200px;
border: 2px solid black;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
margin: 5px;
border-radius: 20%;
justify-content: space-between;
padding: 10px;
border-color: brown;
background-color: rgba(23, 218, 228, 0.808);
}
.card h5 {
text-align: center;
font-size: 22px;
font-family: 'Times New Roman', Times, serif;
}
.card p {
font-size: 16px;
padding-top: 5px;
text-align: center;
justify-content: space-between;
display: inline;
}