Path: blob/master/final-grade-calculator/styles.css
574 views
html{1font-family: 'Open Sans', sans-serif;2font-size: 16px;3margin: 0;4cursor: default;5}6body{7margin: 0;8}9a{10cursor: pointer;11text-decoration: none;12}13a:hover{14text-decoration: underline;15}16button{17padding: 2px 3px;18font-size: 14px;19vertical-align: text-bottom;20transition: all 0.2s;21}22button:not([disabled]){23cursor: pointer;24}25input, select{26border-radius: 0; /*bc iOS doesn't like me*/27padding: 1px 2px;28font-size: 14px;29vertical-align: text-bottom;30transition: all 0.2s;31}32option{33line-height: 0;34min-height: 1em;35}36.p_q{ /*Line up the input fields to look nicer*/37display: inline-block;38text-align: right;39width: 240px;40}41.blk{42display: block;43}44.halert{45padding: 10px;46margin-bottom: 4px;47}48.halert p{49margin: 0;50}51.btn-close{52float: right;53cursor: pointer;54color: #888;55}56#i-toggleTheme{57float: right;58color: #888;59transition: color 0.2s;60}61#i-toggleTheme:hover{62cursor: pointer;63}64#main-outer{65padding: 20px 10px 10px;66}67#main{68padding: 15px 20px;69max-width: 800px;70margin: auto;71}72#main h1{73margin: 0;74margin-bottom: 10px;75}76#header span{77text-align: right;78}79#calc{80padding: 5px 10px;81}82#calcRes, #calcErr{83margin: 10px 0px;84padding: 4px 8px;85border-width: 1px;86border-style: solid;87}88#footer{89margin-top: 15px;90font-size: 14px;91text-align: center;92}93.ns, h1, #footer, #calc{94-moz-user-select: none;95-webkit-user-select: none;96user-select: none;97}98.material-icons{99font-size: 24px;100vertical-align: bottom;101}102.spin{103animation: 2000ms anm_spin infinite linear;104}105@keyframes anm_spin{1060% {transform: rotate(0)}107100% {transform: rotate(360deg)}108}109110/*Stuff part of calc box*/111#calc p{112margin: 0;113margin-bottom: 4px;114line-height: 1.5;115}116#calc input{117width: 80px;118}119#calc-loadErr{120display: none;121}122.res_return{123display: none;124}125126.alertify .alert>*, .alertify .dialog>*{127width: 600px; /*400px is way too small*/128}129130/*Responsive design stuff*/131@media only screen and (max-width: 720px) {132#main-outer{133padding: 0;134}135#main{136padding: 10px;137}138}139@media only screen and (max-width: 600px) {140.p_q{141display: inline;142text-align: left;143}144.rln{ /*Responsive Line*/145display: block;146}147input, select{148font-size: 16px;149}150#calc input{151width: 90px;152}153#calc p{154margin-bottom: 15px;155}156.res_return{157display: inline-block;158}159}160161162