-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyle.html
More file actions
115 lines (91 loc) · 1.7 KB
/
Copy pathstyle.html
File metadata and controls
115 lines (91 loc) · 1.7 KB
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
113
114
115
<style>
.link {
text-decoration: underline;
font-weight: bold;
}
#mobilemenu {
transition: .3s;
}
.button-primary {
padding: 0.75rem 1rem;
background-color: #5C038B;
color: white;
font-family: 'Poppins';
font-weight: bold;
cursor: pointer;
}
.main-font {
font-family: 'Poppins', Arial, Helvetica, sans-serif;
}
.secondary-font {
font-family: 'Roboto Mono';
}
.bg-pink {
background-color: #EA007B;
}
.bg-purple {
background-color: #5C038B;
}
.bg-purple-dark {
background-color:#420264;
}
.text-pink {
color: #EA007B;
}
.text-purple {
color: #5C038B;
}
.mobile-menu-item-bordered {
border: solid #5C038B 1px;
}
body {
font-family: 'Poppins', Arial, Helvetica, sans-serif;
background-color: #EDEEF2;
}
.container {
max-width: 1060px;
padding: 40px 40px;
margin: 0 auto;
}
#nav a {
font-weight: bold;
color: inherit;
}
#nav-border {
border-bottom: 1px solid #212529;
}
#main {
margin-top: 1em;
margin-bottom: 4em;
}
#home-jumbotron {
background-color: inherit;
}
.font-125 {
font-size: 125%;
}
.tag-btn {
margin-bottom: 0.3em;
}
img {
max-width: 100%;
}
@media (max-width: 400px) {
.container {
padding: inherit 15px;
}
.main-cta {
border: #EDEEF2 solid 1px;
background: transparent;
}
}
@media (max-width: 640px) {
.main-cta {
border: #EDEEF2 solid 1px;
background: transparent;
}
.nav-container {
padding-left: 0px;
}
}
</style>