diff options
author | sdtsui <szehungdanieltsui@gmail.com> | 2017-08-07 04:02:31 +0800 |
---|---|---|
committer | sdtsui <szehungdanieltsui@gmail.com> | 2017-08-07 04:02:31 +0800 |
commit | a0a956d646d23891082801e560fac2149b14dca7 (patch) | |
tree | 283cf00ec26f28c444648107418cd4d8ecbc360e /ui/app/css/itcss/generic | |
parent | 04d1d86f309fed4fff78b41e2cbf6c1de6776ef7 (diff) | |
download | tangerine-wallet-browser-a0a956d646d23891082801e560fac2149b14dca7.tar tangerine-wallet-browser-a0a956d646d23891082801e560fac2149b14dca7.tar.gz tangerine-wallet-browser-a0a956d646d23891082801e560fac2149b14dca7.tar.bz2 tangerine-wallet-browser-a0a956d646d23891082801e560fac2149b14dca7.tar.lz tangerine-wallet-browser-a0a956d646d23891082801e560fac2149b14dca7.tar.xz tangerine-wallet-browser-a0a956d646d23891082801e560fac2149b14dca7.tar.zst tangerine-wallet-browser-a0a956d646d23891082801e560fac2149b14dca7.zip |
Move generic button components and body styles to components and generic, respectively
Diffstat (limited to 'ui/app/css/itcss/generic')
-rw-r--r-- | ui/app/css/itcss/generic/index.scss | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/ui/app/css/itcss/generic/index.scss b/ui/app/css/itcss/generic/index.scss index e69de29bb..69da497b1 100644 --- a/ui/app/css/itcss/generic/index.scss +++ b/ui/app/css/itcss/generic/index.scss @@ -0,0 +1,50 @@ +// Generic styles +* { + box-sizing: border-box; +} + +html, body { + font-family: 'Montserrat Regular', Arial; + color: #4D4D4D; + font-weight: 300; + line-height: 1.4em; + background: #F7F7F7; + width: 100%; + height: 100%; + margin: 0; + padding: 0; +} + +html { + min-height: 500px; +} + +.app-root { + overflow: hidden; + position: relative +} + +.app-primary { + display: flex; +} + +input:focus, textarea:focus { + outline: none; +} + +#app-content { + overflow-x: hidden; + min-width: 357px; + height: 100%; + display: flex; + flex-direction: column; +} + +a { + text-decoration: none; + color: inherit; +} + +a:hover{ + color: #df6b0e; +} |