-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.css
166 lines (134 loc) · 2.09 KB
/
test.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
.bar{
display: flex;
align-items: center;
padding: 20px;
}
nav{
flex: 1;
text-align: right;
}
nav ul{
display: inline-block;
list-style-type: none;
}
nav ul li{
display: inline-block;
margin-right: 10px;
}
a{
text-decoration: none;
color: #555;
}
.container{
max-width: 1300px;
margin: auto;
padding-left: 25px;
padding-right: 25px;
}
.row{
display: flex;
align-items: center;
flex-wrap: wrap;
justify-content: space-around;
}
.col-1{
flex-basis: 50%;
min-width: 300px;
width: 60%;
}
.col-1 h1{
padding-left: 100px;
}
.col-1 p{
padding-left: 100px;
animation: fadeIn ease 10s;
-webkit-animation: fadeIn ease 10s;
-moz-animation: fadeIn ease 10s;
-o-animation: fadeIn ease 10s;
-ms-animation: fadeIn ease 10s;
}
p{
font-family: "Libre Caslon Display";
}
p small{
font-size: 10px;
}
.col-1 img{
max-width: 100%;
padding: 80px;
animation: fadeIn ease 10s;
-webkit-animation: fadeIn ease 10s;
-moz-animation: fadeIn ease 10s;
-o-animation: fadeIn ease 10s;
-ms-animation: fadeIn ease 10s;
}
.product{
display: flex;
flex-direction: row;
justify-content: space-around;
margin: 80px 0px;
}
.subtitle{
text-align: center;
font-size: 30pt;
padding-bottom: 0;
}
.col-2{
margin-bottom: 30px;
padding-left: 50px;
}
.smallContainer{
max-width: 1080px;
margin: auto;
padding-left: 25px;
padding-right: 25px;
}
.col-2 .item-description{
font-size: 8pt;
}
.form{
display: flex;
justify-content: center;
}
.button{
background-color: #e7e7e7
color: black;
border: none;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
#textarea{
resize: none;
}
.footer{
margin-top: 80px;
background: #1f1d1d;
color: #ffffff;
font-size:14px;
padding: 60px 0 20px;
}
@keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
}
@-moz-keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
}
@-webkit-keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
}
@-o-keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
}
@-ms-keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
}