25 lines
474 B
CSS
25 lines
474 B
CSS
::selection, ::-moz-selection {
|
|
color: white;
|
|
background-color: #F57F17;
|
|
}
|
|
#popup-warning {
|
|
font-family: helvetica, arial, sans-serif;
|
|
margin: auto;
|
|
margin-top: 50px;
|
|
width: 100%;
|
|
max-width: 400px;
|
|
display: none;
|
|
background-color: #FFEE58;
|
|
color: #F57F17;
|
|
border-left: 2px solid #F57F17;
|
|
font-size: 14px;
|
|
text-align: left;
|
|
padding: 10px;
|
|
}
|
|
#refresh {
|
|
text-decoration: underline;
|
|
}
|
|
#refresh:hover {
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
} |