-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles_index.css
131 lines (103 loc) · 1.53 KB
/
styles_index.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
125
126
127
128
129
130
131
.middle{
width: 100%;
background-color: white;
}
.middle b{
font-size: 1vw;
}
.columncontainer{
margin: auto;
display: grid;
justify-content: center;
flex-wrap: wrap;
padding: 0 4px;
margin-top: 40px;
grid-template-columns: 33% 33% 33%;
margin-bottom: 40px;
}
.column {
margin-top: 0px;
padding: 0 15px;
}
.column2 {
margin-top: 15px;
padding: 0 15px;
}
.column2 img {
margin-top: 8px;
vertical-align: middle;
width: 100%;
border-radius: 15px 60px 0px 0px;
}
.blurb1{
text-align: justify;
}
.blurb1 h1{
font-size: 2.9vw;
}
.blurb1 b{
font-weight: 400;
}
.pro {
text-align: center;
background-color: #EB5D3E;
padding-top: 10pt;
padding-bottom: 10pt;
font-weight: 700;
font-size: 20pt;
font-size: 2vw;
margin-top: 0;
z-index: 100;
border-radius: 0 0 15px 15px;
}
.learnmore {
text-align: center;
background-color: white;
width: auto;
height: auto;
}
.learnmore a {
text-decoration: none;
color: #7B549E;
font-weight: 700;
font-size: 15pt;
font-size: 1.5vw;
}
@media (max-width: 1100px) {
}
@media (max-width: 920px) {
.middle b{
font-size: 1.5vw;
}
.blurb1 h1{
font-size: 5vw;
line-height: 0;
}
.blurb1{
line-height: 6pt;
}
.columncontainer{
display: flex;
flex-wrap: wrap;
grid-template-columns: auto;
}
.column {
margin-top: -8px;
flex: 100%;
max-width: 100%;
}
.column2 {
margin-top: -8px;
flex: 50%;
max-width: 50%;
}
.column2 img {
border-radius: 5px 20px 0px 0px;
}
.pro {
font-size: 3vw;
}
.learnmore a {
font-size: 3vw;
}
}