forked from dashpilot/vue-pagebuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
124 lines (103 loc) · 2.11 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
113
114
115
116
117
118
119
120
121
122
123
124
:root {
--bg-color: #F7FAFC;
--fg-color: #000000;
--font: "Rubik";
--spacing: "-0.04em";
}
.container{
padding-top: 20px;
padding-bottom: 20px;
}
section h1, section h2, section h3, section h4{
font-family: var(--font);
letter-spacing: var(--spacing);
font-weight: 600;
}
section h1, section h2{
font-size: 45px;
line-height: 45px;
}
section h3{
margin-top: 20px;
font-size: 35px;
line-height: 35px;
}
section h1{
margin-bottom: 10px;
}
section h2{
margin-bottom: 25px;
}
section p{
font-family: "Rubik", sans-serif;
font-weight: 300;
font-size: 20px;
line-height: 30px;
color: #4f5c65;
}
section{
padding: 25px;
padding-top: 100px;
padding-bottom: 100px;
}
#header:nth-child(odd) h1,
#header:nth-child(odd) h2,
#header:nth-child(odd) h3,
#header:nth-child(odd) p,
#header:nth-child(odd) .fas{
color: var(--fg-color);
}
#content section:nth-child(even) h1,
#content section:nth-child(even) h2,
#content section:nth-child(even) h3,
#content section:nth-child(even) p,
#content section:nth-child(even) .fas{
color: var(--fg-color);
}
#content section:nth-child(even){
background-color: var(--bg-color);
}
#header:nth-child(odd){
background-color: var(--bg-color);
}
.btn-secondary{
font-family: "Rubik", sans-serif;
border: 1px solid #000;
font-size: 20px;
padding: 8px 25px 8px 25px;
margin-top: 25px;
background-color: transparent;
}
.btn-secondary:hover{
border: 1px solid #999;
background-color: transparent;
}
#header:nth-child(odd) .btn-secondary{
color: var(--fg-color);
border-color: color: var(--fg-color);
}
#content:nth-child(odd) .btn-secondary{
color: var(--fg-color);
border-color: color: var(--fg-color);
}
.fa-big{
font-size: 45px;
margin-bottom: 15px;
}
.responsive-container {
position: relative;
overflow: hidden;
width: 100%;
padding-top: 56.25%;
/* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}
/* Then style the iframe to fit in the container div with full height and width */
.responsive-iframe {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
width: 100%;
height: 100%;
}