Graphics using CSS shapes

by Aashish Manandhar

HTML

<div class="ws-alert">
<div class="ws-header">You're still using Chrome! :(</div>
<div class="ws-subtitle">In a few days, platform will no longer support Chrome and you could miss out from doing tasks!</div>
<a href="http://browser.cloudfactory.com" target="_blank"><div class="ws-btn ws-blue-btn">Start using WorkStream Browser</div></a>
<div class="ws-chrome ws-btn">Continue with Chrome</div>
</div>

CSS

.ws-alert {
    font-size: 16px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: center;
    flex-direction: column;
    min-width: 1px;
    min-height: 1px;
    color:white;
    background-color: #FF7043;
    font-family: sans-serif;
    opacity:0.98;
}
.ws-alert .ws-header {
  font-weight: bold;
  font-size: 4em;
}
.ws-alert .ws-subtitle {
  margin: 0.5em;
  font-size: 1.5em;
}

.ws-blue-btn {
    background: #01579B;
    padding: 1.5em;
    margin: 1.5em;
    font-size: 1.2em;
    border-radius: 2px;
    box-shadow: 2px 2px 2px #272727;
}
.ws-blue-btn:hover {
  transform: scale(1.01,1.01);
}
.ws-alert a{
  text-decoration: none;
  color: white;
}
.ws-chrome{
  text-decoration: underline;
  cursor: pointer;
}