-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
56 lines (53 loc) · 900 Bytes
/
styles.css
File metadata and controls
56 lines (53 loc) · 900 Bytes
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
* {
background-color: black;
}
heading h1 {
color: white;
font-weight: bold;
background-color: rgb(255, 123, 0);
padding: 16px 32px;
font-size: 30px;
box-shadow: 3px 2px 5px #ccc;
}
heading h1:hover {
box-shadow: 3px 3px 5px red;
}
.note {
border-radius: 7px;
box-shadow: 0 2px 5px #ccc;
padding: 10px;
width: 240px;
margin: 16px;
float: left;
}
.note h1 {
color: white;
font-size: 1.1em;
margin-bottom: 6px;
}
.note p {
color: white;
font-size: 1.1em;
margin-bottom: 10px;
white-space: pre-wrap;
word-wrap: break-word;
}
.note2 {
border-radius: 7px;
box-shadow: 0 2px 5px #ccc;
padding: 10px;
width: 240px;
margin: 16px;
float: right;
}
footer {
position: absolute;
text-align: center;
bottom: 0;
width: 100%;
height: 2.5rem;
}
footer p {
color: red;
font-size: 15px;
}