forked from Technigo/application-remote-boot-camp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
50 lines (40 loc) · 731 Bytes
/
Copy pathstyle.css
File metadata and controls
50 lines (40 loc) · 731 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
/* Example styling of a h1 element */
body {
font-family: Arial, Helvetica, sans-serif;
background-color: #ddbea9;
}
h1 {
color: #6b705c;
}
h2 {
text-decoration: underline;
}
#about_Sass::first-letter {
font-size: 2rem;
font-weight: 700;
color: #283618;
}
li::first-letter {
font-size: 2rem;
}
li:nth-of-type(2n) {
background-color: #ffe8d6;
width: 40%;
}
span {
background-color: #ff6db7;
display: inline-block;
padding: 3px;
}
form {
display: inline-block;
margin: 1rem 0 0 1rem;
text-decoration: none;
}
button {
padding: 0.5rem;
font-weight: 700;
}
button:hover {
background-color: #dda15e;
}