Templates.css 1.21 KB
html{
    
    font-family: 'Montserrat', sans-serif;
}
h1,h3{
    text-align: center;
}
h1{
    font-size: 35px;
}
body{
    background-color: whitesmoke;
}
.TabCards{
    background-color: white;
    box-shadow: 2px 2px 5px #575757;
    margin: 2% auto;
    padding: 2%;
    border-radius: 2px;
}
.TabTitle{
    font-size: 30px;
    width: 100%;
    text-align: center;
    border:none;
    border-bottom: 1px solid grey;
}
.InputContainer{
    width: 100%;
    text-align: center;
}
.Input{
    border:none;
    border-bottom: 1px solid grey;
    width: 25%;
    margin: 1%;
}
.NewTabButton, .NewInputButton, .RemoveInputButton{
    text-align: center;
    margin: auto;
    color: whitesmoke;
    border-radius: 50%;
    
}
.NewTabButton{
    font-size:45px;
    width: 90px;
    height: 90px;
    border: 3px solid rgb(0, 88, 170);
    background-color: rgb(0, 102, 255);
}
.NewInputButton {
    font-size: 25px;
    width: 40px;
    height: 40px;
    margin: 1%;
    border: 3px solid rgb(1, 194, 120);
    background-color: rgb(14, 211, 135);
}
.RemoveInputButton{
    width: 40px;
    height: 40px;
    margin: 1%;
    font-size: 20px;
    border: 3px solid rgb(230, 25, 25);
    background-color: rgba(211, 14, 14, 0.788);
}