diff options
| author | kimdahey <claire_kim1@brown.edu> | 2019-11-12 17:22:42 -0500 |
|---|---|---|
| committer | kimdahey <claire_kim1@brown.edu> | 2019-11-12 17:22:42 -0500 |
| commit | 272bc257aba8bd2f1ac2e1f3248c482c4da7edcb (patch) | |
| tree | fad0fc0e2974ca1ea9923663301e6c301c27aef4 /src/client/util/SettingsManager.scss | |
| parent | 190ab79a986981580d39fcf42b0875f76876fccc (diff) | |
fixed button issue
Diffstat (limited to 'src/client/util/SettingsManager.scss')
| -rw-r--r-- | src/client/util/SettingsManager.scss | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/src/client/util/SettingsManager.scss b/src/client/util/SettingsManager.scss new file mode 100644 index 000000000..2b3e455e0 --- /dev/null +++ b/src/client/util/SettingsManager.scss @@ -0,0 +1,55 @@ +.settings-interface { + display: flex; + flex-direction: column; + + .focus-span { + text-decoration: underline; + } + + p { + font-size: 20px; + text-align: left; + font-style: italic; + padding: 0; + margin: 0 0 20px 0; + } + + .container { + display: block; + position: relative; + margin-top: 10px; + margin-bottom: 10px; + font-size: 22px; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + width: 700px; + min-width: 700px; + max-width: 700px; + text-align: left; + font-style: normal; + font-size: 15; + font-weight: normal; + padding: 0; + + .padding { + padding: 0 0 0 20px; + color: black; + } + + .close-button { + border-radius: 5px; + margin-top: 20px; + padding: 10px 0; + background: aliceblue; + transition: 0.5s ease all; + border: 1px solid; + border-color: aliceblue; + } + + .close-button:hover { + border-color: black; + } + } +}
\ No newline at end of file |
