-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
98 lines (77 loc) · 1.3 KB
/
style.css
File metadata and controls
98 lines (77 loc) · 1.3 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
body{
font-family: Arial, Helvetica, sans-serif;
background-color: rgb(168, 162, 162);
}
p{
font-size: 1.6rem;
line-height: 1.5;
}
img{
width: 100%;
}
.container{
max-width: 900px;
margin: 0 auto;
padding: 0 20px;
}
header h1{
font-size: 2.5rem;
color: rgb(0, 23, 128);
line-height: 2;
}
header form{
display: flex;
flex-direction: column;
width: 40rem;
}
form > * {
margin-bottom: 5px;
outline: none;
font-size: 1.4rem;
padding: 7px;
border: 1px solid #777;
border-radius: 3px;
}
form textarea{
padding: 7px 0 40px 5px;
font-family: inherit;
}
div ::placeholder{
font-size: 1rem;
}
form button{
background-color:rgb(43, 107, 68);
color: #fff;
font-size: 1.6rem ;
cursor: pointer;
transition: all.3s;
}
form button:hover{
background-color:rgb(0, 23, 128);
}
.notes {
padding: 1rem ;
background-color: #fff;
border-radius: 5px;
margin: 1rem 0;
}
.note-counter,
.note-text{
font-size: 1.4rem;
}
.note-title{
font-size: 1.6rem;
}
.note-btn{
padding: 7px;
margin-top: 5px;
background-color: rgb(43, 107, 68);
outline: none;
border: none;
border-radius: 3px;
color: #fff;
cursor: pointer;
}
.edit-btn{
background-color: rgb(0, 23, 128);
}