Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 1 | .inline { |
2 | display: inline-block; | ||||
Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 3 | } |
4 | |||||
5 | .disabled { | ||||
Michael Davis | 20389ab | 2017-07-31 18:49:32 -0500 | [diff] [blame] | 6 | &:hover { |
7 | cursor: default; | ||||
8 | text-decoration: none; | ||||
9 | } | ||||
Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 10 | } |
11 | |||||
12 | .float-right { | ||||
13 | float: right; | ||||
14 | } | ||||
15 | .clear-float { | ||||
Derick Montague | 1ffa209 | 2019-04-01 17:57:27 -0500 | [diff] [blame] | 16 | &::after { |
17 | content: " "; | ||||
18 | display: block; | ||||
19 | clear: both; | ||||
20 | } | ||||
Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 21 | } |
22 | .error { | ||||
Yoshie Muranaka | 6f7ec80 | 2019-06-24 14:35:41 -0500 | [diff] [blame] | 23 | color: $status-error; |
Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 24 | } |
25 | |||||
26 | .hide { | ||||
27 | display: none; | ||||
28 | } | ||||
29 | |||||
30 | .show { | ||||
31 | display: block; | ||||
32 | } | ||||
33 | |||||
34 | .close { | ||||
Yoshie Muranaka | 6f7ec80 | 2019-06-24 14:35:41 -0500 | [diff] [blame] | 35 | color: $primary-accent; |
Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 36 | font-size: 1.5em; |
37 | padding: 1em; | ||||
38 | box-sizing: border-box; | ||||
39 | line-height: 0; | ||||
40 | display: flex; | ||||
41 | justify-content: center; | ||||
42 | flex-direction: column; | ||||
43 | background: transparent; | ||||
Iftekharul Islam | 4390b02 | 2017-06-05 09:44:50 -0500 | [diff] [blame] | 44 | border: 0px; |
Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 45 | margin: 0; |
46 | &:hover { | ||||
Yoshie Muranaka | 6f7ec80 | 2019-06-24 14:35:41 -0500 | [diff] [blame] | 47 | color: $text-03; |
Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 48 | background: transparent; |
49 | } | ||||
50 | } | ||||
51 | |||||
Michael Davis | 0f03ad1 | 2017-02-27 16:54:18 -0600 | [diff] [blame] | 52 | .fixed { |
53 | position:fixed; | ||||
54 | top:130px; | ||||
55 | z-index:200; | ||||
56 | } | ||||
57 | |||||
Michael Davis | aeedf9e | 2017-04-06 14:35:56 -0500 | [diff] [blame] | 58 | .bold { |
59 | font-weight: 700; | ||||
60 | } | ||||
61 | |||||
Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 62 | .no-margin { |
Michael Davis | 5194655 | 2017-05-01 10:30:38 -0500 | [diff] [blame] | 63 | margin: 0 !important; |
Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 64 | } |
65 | |||||
Michael Davis | 1947575 | 2017-02-23 18:30:23 -0600 | [diff] [blame] | 66 | .no-padding { |
Michael Davis | 5194655 | 2017-05-01 10:30:38 -0500 | [diff] [blame] | 67 | padding:0 !important; |
Michael Davis | 1947575 | 2017-02-23 18:30:23 -0600 | [diff] [blame] | 68 | } |
69 | |||||
Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 70 | .no-bottom-margin { |
Michael Davis | 5194655 | 2017-05-01 10:30:38 -0500 | [diff] [blame] | 71 | margin-bottom: 0 !important; |
Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 72 | } |
73 | |||||
74 | .no-top-margin { | ||||
Michael Davis | 5194655 | 2017-05-01 10:30:38 -0500 | [diff] [blame] | 75 | margin-top: 0 !important; |
Michael Davis | 1947575 | 2017-02-23 18:30:23 -0600 | [diff] [blame] | 76 | } |
77 | |||||
78 | .transitionAll { | ||||
79 | transition: all .5s ease; | ||||
Michael Davis | 9486f54 | 2017-05-30 15:35:31 -0500 | [diff] [blame] | 80 | } |
81 | |||||
82 | //Uploading | ||||
83 | .uploading { | ||||
84 | @include indeterminate-bar; | ||||
85 | font-weight: 700; | ||||
86 | padding: .2em 6em .2em 1em; | ||||
87 | margin: .8em 0; | ||||
88 | width: 100%; | ||||
89 | } | ||||
90 | |||||
91 | .accessible-text { | ||||
Derick Montague | 1ffa209 | 2019-04-01 17:57:27 -0500 | [diff] [blame] | 92 | clip: rect(1px, 1px, 1px, 1px); |
93 | clip-path: inset(50%); | ||||
94 | height: 1px; | ||||
95 | width: 1px; | ||||
96 | margin: -1px; | ||||
Michael Davis | 9486f54 | 2017-05-30 15:35:31 -0500 | [diff] [blame] | 97 | overflow: hidden; |
Derick Montague | 1ffa209 | 2019-04-01 17:57:27 -0500 | [diff] [blame] | 98 | padding: 0; |
99 | position: absolute; | ||||
Michael Davis | 6dc5f18 | 2017-06-26 13:07:27 -0500 | [diff] [blame] | 100 | } |
101 | |||||
102 | .show-scroll { | ||||
103 | // Force scrollbar to always be visible in webkit browsers | ||||
104 | &::-webkit-scrollbar { | ||||
Yoshie Muranaka | 6f7ec80 | 2019-06-24 14:35:41 -0500 | [diff] [blame] | 105 | background-color: $background-03; |
Michael Davis | 6dc5f18 | 2017-06-26 13:07:27 -0500 | [diff] [blame] | 106 | width: 8px; |
107 | } | ||||
108 | |||||
109 | &::-webkit-scrollbar-thumb { | ||||
110 | border-radius: 5px; | ||||
111 | background-color: rgba(0,0,0,.5); | ||||
112 | -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5); | ||||
113 | } | ||||
Michael Davis | a5f222a | 2017-08-04 15:02:38 -0500 | [diff] [blame] | 114 | } |
115 | |||||
116 | .flash { | ||||
117 | animation-name: flash; | ||||
118 | animation-timing-function: ease-out; | ||||
119 | animation-duration: 1s; | ||||
120 | -webkit-animation-name: flash; | ||||
121 | -webkit-animation-timing-function: ease-out; | ||||
122 | -webkit-animation-duration: 1s; | ||||
Yoshie Muranaka | 6f7ec80 | 2019-06-24 14:35:41 -0500 | [diff] [blame] | 123 | color: $primary-light; |
Michael Davis | a5f222a | 2017-08-04 15:02:38 -0500 | [diff] [blame] | 124 | } |
125 | @-webkit-keyframes flash { | ||||
Yoshie Muranaka | 6f7ec80 | 2019-06-24 14:35:41 -0500 | [diff] [blame] | 126 | from { background: $primary-accent; } |
Michael Davis | a5f222a | 2017-08-04 15:02:38 -0500 | [diff] [blame] | 127 | to { background: none; } |
128 | } | ||||
129 | |||||
130 | @keyframes flash { | ||||
Yoshie Muranaka | 6f7ec80 | 2019-06-24 14:35:41 -0500 | [diff] [blame] | 131 | 0% { background: $primary-accent; } |
Michael Davis | a5f222a | 2017-08-04 15:02:38 -0500 | [diff] [blame] | 132 | 100% { background: none; } |
Yoshie Muranaka | fa56273 | 2019-07-17 11:23:15 -0500 | [diff] [blame^] | 133 | } |
134 | |||||
135 | .nowrap { | ||||
136 | white-space: nowrap!important; | ||||
Michael Davis | cb8bb19 | 2017-02-09 15:45:13 -0600 | [diff] [blame] | 137 | } |