-
-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathstyles.module.css
More file actions
73 lines (62 loc) · 1.54 KB
/
styles.module.css
File metadata and controls
73 lines (62 loc) · 1.54 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
.sponsorbuttons {
display: flex;
justify-content: center;
margin-top: 2rem;
margin-bottom: 1.5rem;
}
.borderbutton {
color: white;
text-transform: uppercase;
max-width: 100%;
margin-left: 1rem;
border: 1px solid var(--ifm-color-primary);
}
.borderbutton:hover {
border-radius: 7px;
border: 1px solid var(--ifm-color-primary-darkest);
background-color: var(--ifm-color-primary-darkest);
}
.sponsorbutton {
text-transform: uppercase;
max-width: 100%;
border: 1px solid var(--ifm-color-primary-darker);
background-color: var(--ifm-color-primary-darker);
}
.sponsorbutton:before {
content: "Start Monthly Plan";
}
.borderbutton:before {
content: "Contact Graphile";
}
.sponsorbutton:hover {
background-color: var(--ifm-color-primary-darkest);
border: 1px solid var(--ifm-color-primary-darkest);
}
[data-theme="dark"] .sponsorbutton {
border: 1px solid var(--ifm-color-primary-light);
background-color: var(--ifm-color-primary-light);
}
[data-theme="dark"] .borderbutton {
color: black;
}
[data-theme="dark"] .sponsorbutton:hover {
border: 1px solid var(--ifm-color-primary-lightest);
background-color: var(--ifm-color-primary-lightest);
}
[data-theme="dark"] .borderbutton:hover {
border: 1px solid var(--ifm-color-primary-lightest);
background-color: var(--ifm-color-primary-lightest);
}
@media screen and (max-width: 995px) {
.sponsorbuttons {
display: flex;
flex-direction: column;
}
.borderbutton {
margin-top: 1rem;
margin-left: 0rem;
}
.borderbutton:before {
content: "Contact";
}
}