Path: blob/main/website/Drawing-app/style.css
2940 views
body{1/* overflow: hidden; */2overscroll-behavior-y: none; /* Disabling Pull Down To Refresh*/3background-color: #e6cb00;4color: black;5}67#draw{8font-size: 34px;9font-family: 'Raleway', sans-serif;10}1112#sketchcontainer{13width: 100%;14margin-right: auto;15touch-action: none;16}1718.line1{19/*20display: flex;21align-items: center;22justify-content: center;23*/24font-size: 38px;25font-family: 'Raleway', sans-serif;;26margin-bottom: 10px;27}2829.line2{30/*31display: flex;32align-items: center;33justify-content: center;34*/35font-size: 38px;36font-family: 'Raleway', sans-serif;;37}3839.line3{40display: flex;41align-items: center;42justify-content: center;43padding: 10px;44}4546.sliderClass{47-webkit-appearance : none;48height: 13px;49width: 50%;50cursor: pointer;51border-radius: 20px;52outline: none;53background: #d3d3d3;54margin-left: 20px;55}5657.sliderClass::-webkit-slider-thumb {58-webkit-appearance: none;59appearance: none;60width: 25px;61height: 25px;62border-radius: 50%;63background: #4CAF50;64cursor: pointer;65}6667.sliderClass::-moz-range-thumb {68width: 25px;69height: 25px;70border-radius: 50%;71background: #4CAF50;72cursor: pointer;73}7475.undo{76-webkit-appearance:none;77border-radius: 5px;78background-color: #ff0000;79color: #FFFFFF;80font-size: 34px;81font-family: 'Raleway', sans-serif;82margin-left: 20px;83}8485.clear{86-webkit-appearance: none;87margin-left: 20px;88border-radius: 5px;89background-color: #ff0000;90color: #FFFFFF;91font-size: 34px;92font-family: 'Raleway', sans-serif;93}9495/* Color Selector Button Style : */96.ColorButtons{97-webkit-appearance: none;98margin-right: 20px;99width: 50px;100height: 40px;101border-radius: 15%;102border-color: black;103border-style: solid;104}105106/* Eraser And Brush Setters Style */107.eraserSettingsClass{108margin-left: 10px;109margin-right: 10px;110-webkit-appearance: none;111appearance: none;112border-radius: 5px;113background-color: deeppink;114color: white;115font-size: 38px;116font-family: 'Raleway', sans-serif;;117}118119.brushSettingsClass{120margin-right: 10px;121-webkit-appearance: none;122appearance: none;123border-radius: 5px;124background-color: deeppink;125color: white;126font-size: 38px;127font-family: 'Raleway', sans-serif;;128}129130/* Submission Button Style */131.submitButtonClass{132border-radius: 3px;133-webkit-appearance: none;134appearance: none;135font-size: 38px;136font-family: 'Raleway', sans-serif;;137background-color: rgb(38, 180, 44);138color: white;139margin-right: 10px;140font-style: oblique;141}142143/* View Submissions Button Style */144.viewSubmissionsButtonClass{145border-radius: 3px;146-webkit-appearance: none;147appearance: none;148font-size: 38px;149font-family: 'Raleway', sans-serif;;150background-color: rgb(38, 180, 44);151color: white;152font-style: oblique;153}154155156