-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
78 lines (68 loc) · 1.07 KB
/
style.css
File metadata and controls
78 lines (68 loc) · 1.07 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
body {
font-family: Arial, sans-serif;
background: #f0f0f5;
padding: 20px;
margin: 0;
}
.note-buttons button {
margin: 5px 4px 0 0;
}
.container {
max-width: 800px;
margin: auto;
background: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px #ccc;
}
h1 {
text-align: center;
color: #333;
}
input[type="text"] {
width: 100%;
padding: 10px;
margin: 5px 0;
font-size: 16px;
}
button {
padding: 10px 12px;
margin: 5px 4px 0 0;
font-size: 14px;
cursor: pointer;
background: #0077cc;
color: white;
border: none;
border-radius: 4px;
}
button:hover {
background: #005fa3;
}
.note {
background: #fafafa;
padding: 12px;
margin: 10px 0;
border-left: 5px solid #0077cc;
border-radius: 5px;
box-shadow: 0 1px 3px #ccc;
}
.note-text {
font-size: 16px;
margin-bottom: 5px;
}
.note-buttons button {
margin-right: 5px;
}
@media screen and (max-width: 600px) {
.container {
padding: 10px;
}
button {
width: 100%;
margin-top: 6px;
}
.note-buttons {
display: flex;
flex-direction: column;
}
}