29 lines
380 B
CSS
29 lines
380 B
CSS
|
header {
|
||
|
align-items: center;
|
||
|
background-color: #2a2041;
|
||
|
border: 1px solid #3bd18a;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
padding: 16px;
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
h2 {
|
||
|
margin-right: auto;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
a.install {
|
||
|
background-color: #3bd18a;
|
||
|
color: #1f1731;
|
||
|
}
|
||
|
|
||
|
a.install:hover {
|
||
|
background-color: #96c839;
|
||
|
}
|
||
|
|
||
|
.remove-padding,
|
||
|
.remove-a-padding a {
|
||
|
padding: 0;
|
||
|
}
|