22 lines
347 B
CSS
22 lines
347 B
CSS
body {
|
|
background-image: linear-gradient(180deg, #eee, #fff 100px, #fff);
|
|
}
|
|
|
|
.container {
|
|
max-width: 960px;
|
|
}
|
|
|
|
.pricing-header {
|
|
max-width: 700px;
|
|
}
|
|
|
|
.btn-outline-primary {
|
|
color: orangered;
|
|
border-color: orangered;
|
|
}
|
|
|
|
.btn-outline-primary:hover {
|
|
color: #fff;
|
|
background-color: orangered;
|
|
border-color: orangered
|
|
} |