forked from cerebral/overmind
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.ts
More file actions
95 lines (84 loc) · 1.59 KB
/
styles.ts
File metadata and controls
95 lines (84 loc) · 1.59 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
import { css } from 'emotion'
export const wrapper = css`
background-color: inherit;
padding-top: 100px;
display: flex;
box-sizing: border-box;
justify-content: center;
@media (max-width: 700px) {
padding: var(--padding-5);
}
h1,
h2 {
color: var(--color-dark-1);
}
`
export const summary = css`
margin-top: 50px;
font-size: var(--font-size-4);
text-align: center;
`
export const container = css`
margin-left: auto;
margin-right: auto;
max-width: 1100px;
width: 100%;
`
export const valueProposition = css`
display: flex;
flex-direction: row;
width: 100%;
padding: 0 var(--padding-4);
box-sizing: border-box;
align-items: center;
> div {
flex: 1;
width: auto;
}
> div:nth-child(1) {
margin-right: 40px;
}
margin-bottom: 100px;
`
export const valuePropositionMobile = css`
flex-direction: column;
padding: 0;
> div {
width: 100%;
}
> div:nth-child(1) {
margin-right: 0;
}
margin-bottom: 25px;
`
export const iframeWrapper = css`
position: relative;
box-sizing: border-box;
display: flex;
width: 100%;
justify-content: center;
align-items: center;
`
export const iframe = css`
border: 0;
width: 100%;
height: 500px;
box-shadow: 0px 0px 20px -10px rgba(0, 0, 0, 0.75);
border-radius: 4px;
overflow: hidden;
`
export const banner = css`
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 100px;
> h1 {
font-weight: normal;
letter-spacing: 0.2rem;
text-align: center;
font-size: 28px;
}
`
export const bannerMobile = css`
margin-bottom: 50px;
`