-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
112 lines (90 loc) · 1.26 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
* {
box-sizing: border-box;
}
html {
font-family: "Quicksand", sans-serif;
font-size: 20px;
}
body {
margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Square Peg", cursive;
}
.dochead {
text-align: center;
background-color: lavenderblush;
padding: 3rem 1rem;
padding-top: 4.5rem;
position: relative;
}
.docmain {
max-width: 60ch;
margin: 0 auto;
padding: 1rem;
}
.docmain > * {
border-top: 0.125rem solid hotpink;
padding: 1rem;
}
nav > a {
margin: 0.5rem;
}
.navi:link {
color: blue;
}
.navi:visited {
color: purple;
}
.navi:hover {
background-color: lightcoral;
}
.navi:active {
background-color: peachpuff;
}
.docmain > * + * {
margin-top: 5rem;
}
.docmain *:first-child {
border: none;
}
.dochead > p::after {
content: " 🦄";
}
*::selection {
background-color: purple;
color: peachpuff;
}
.experience-heading {
display: inline-block;
}
.experience-subheading {
display: inline-block;
}
.hire-me {
background-color: hotpink;
color: whitesmoke;
border-radius: 0.25rem;
padding: 0.5rem;
position: absolute;
right: 1rem;
top: 1rem;
}
.main-heading {
position: relative;
left: -1rem;
}
.dochead-h-p {
font-size: 4rem;
}
.dochead-sub {
font-size: 0.25em;
}
.name-head {
font-size: 4rem;
}