-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
70 lines (62 loc) · 1.13 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
h1 {
text-align:center;
margin:30px auto 0 auto;
font-size: 40px;
font-weight:bold;
}
form {
text-align:center;
width:360px;
border-radius:5px;
padding: 30px 20px 20px 20px;
margin:20px auto auto auto;
display:block;
background-color:LightGray;
}
textarea {
min-width:320px;
min-height:320px;
}
a {
display:block;
}
.button {
background-color: #4CAF50;
border: 2px solid #4CAF50;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
-webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.4s;
}
.button:hover {
background-color: white;
color: black;
border: 2px solid #4CAF50;
}
.note_list {
text-align:center;
width:360px;
border-radius:5px;
padding: 30px 20px 20px 20px;
margin:20px auto auto auto;
display:block;
background-color:LightGray;
}
.single_note {
text-align:center;
width:360px;
border-radius:5px;
padding: 30px 20px 20px 20px;
margin:20px auto auto auto;
display:block;
}
#buddy {
float:left;
margin:auto auto auto 50px;
}