-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (64 loc) · 1.05 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
header {
background-color: #444;
}
h1 {
text-align: center;
}
a {
text-decoration: none;
color: #888;
}
a:hover, li:hover {
color: #AACCAA;
}
body {
background-color: #222;
color: #DDD;
}
footer {
text-align: center;
padding-bottom: 8px;
margin: 20px 0 10px;
display: block;
}
.container {
/*display: inline-block;*/
background: linear-gradient(35deg, #CCFFFF, #FFCCCC);
/*width: 300px;
height: 600px;*/
color: black;
/*margin: auto;*/
border: 2px solid green;
border-radius: 15px;
padding: 10px 15px 15px 15px;
text-align: center;
margin: 10px 25px;
}
main {
display: flex;
}
#left {
flex: 0 0 50%;
}
#right {
flex: 1;
}
#savednotes > li:nth-child(odd) {
background-color: #888;
}
#savednotes > li {
margin-bottom: 10px;
border: 1px solid green;
width: auto;
padding: 2px 5px 2px 5px;
}
#savednotes button {
margin-bottom: 10px;
display: inline;
}
button b {
text-decoration: underline;
}
.fa-free-code-camp::before {
content: "\f2c5";
}