The CSS styles I am using are as follows:
@media (min-width: 1280px)
{
.window-padding {
padding-top: 20px;
padding-bottom: 20px;
padding-left: 30px;
padding-right: 30px;
}
}
@media (min-width: 769px)
{
.window-padding {
padding-right: 20px;
padding-left: 20px;
padding-left: 10px;
padding-right: 10px;
}
}
.window-padding {
padding-right: 10px;
padding-left: 10px;
padding-left: 0px;
padding-right: 0px;
}
However, when viewing in a browser with a width greater than 1280px, only the padding-top and padding-bottom from min-width:1280px is being applied. The padding-left and padding-right seem to be from a style that does not have a @media condition. Here is what is currently being applied:
https://i.sstatic.net/vK9zS.png
EDIT: I discovered that reordering the CSS to have the smallest size first resolved the issue. Additionally, I realized that there were duplicate padding styles present due to a mistake.