forked from jk715/docs.hackerone.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.scss
More file actions
105 lines (88 loc) · 1.47 KB
/
Copy pathmain.scss
File metadata and controls
105 lines (88 loc) · 1.47 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
@import 'reset';
@import 'variables';
body {
background: $daisy-white;
font-family: "Effra", sans-serif;
font-size: 16px;
line-height: 24px;
color: $daisy-zambezi;
}
a {
color: $daisy-blue;
transition: color .15s ease-in-out;
&:hover {
text-decoration: none;
}
}
h1,
h2,
h3,
h4,
h5,
h6 {
color: $daisy-eclipse;
}
.wrapper {
padding-top: 60px;
}
.hero {
background: url("../images/pattern.png") $daisy-blue;
color: $daisy-white;
}
.hero__wrapper {
max-width: 1000px;
padding-left: 20px;
padding-right: 20px;
margin-left: auto;
margin-right: auto;
padding-top: 95px;
padding-bottom: 85px;
text-align: center;
h1 {
color: $daisy-white;
font-weight: 300;
@media (min-width: $mobile-breakpoint) {
font-size: 60px;
}
}
p {
font-size: 20px;
line-height: 1.5;
}
}
.homepage-content {
margin-top: 64px;
margin-bottom: 64px;
}
.homepage-content__wrapper {
max-width: 1200px;
padding-left: 20px;
padding-right: 20px;
margin-left: auto;
margin-right: auto;
}
.pull-left {
float: left;
}
.pull-right {
float: right;
}
.clearfix {
clear: both;
}
.background {
background-color: rgba(45,104,244, 0.1);
}
.betanote {
background-color: rgba(45,104,244,0.3);
margin-left: 1.45rem;
margin-right: 1.45rem;
margin-top: 0;
padding-bottom: 12px;
padding-left: 12px;
padding-right: 4px;
padding-top: 12px;
margin-bottom: 1.45rem;
border-left: 6px solid #2D68F4;
border-radius: 0.3em;
}