diff options
Diffstat (limited to 'css/style.css')
-rw-r--r-- | css/style.css | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/css/style.css b/css/style.css new file mode 100644 index 0000000..eb75345 --- /dev/null +++ b/css/style.css @@ -0,0 +1,69 @@ +#main-content { + position: relative; +} + +#altitude { + position: absolute; + top: 0; + width: 100%; + bottom: 50px; + display: -webkit-flex; +} + +#altitude-frame { + margin: auto; + text-align: center; +} + +#altitude-value { + font-size: 100px; + font-weight: bold; + line-height: 100px; +} + +#pressure { + position: absolute; + height: 50px; + left: 20px; + right: 20px; + bottom: 0px; + font-size: 20px; +} + +#reference { + position: absolute; + left: 0; +} + +#current { + position: absolute; + right: 0; + text-align: right; +} + +@media (-tizen-geometric-shape: circle) { + .btn-apply:before { + -webkit-mask-image: url(../images/tw_ic_button_apply_holo_dark.png); + } + + .btn-erase:before { + -webkit-mask-image: url(../images/tw_ic_button_erase_holo_dark.png); + } + + .btn-apply, .btn-erase { + color: transparent; + } + + .ui-popup .ui-popup-content { + text-align: center; + } + + #main-content { + height: 36% !important; + } + + #altitude-value { + font-size: 90px; + line-height: 90px; + } +}
\ No newline at end of file |