aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/core/hotkeys/hotkeys.component.scss
blob: 5eb38f98fc77ce7f5ab83399c6b053bd07f89c50 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12

                       
 
                        

                           





                  
                                     
                 
                                                





                             



                                   
                      











                      
                   



                    
                                     








                         
                  


                  

                             
                        


                                                

                     





                                               
                              

















                          
                  
               

 
                                          








                                   
 
@use '_variables' as *;
@use '_mixins' as *;

.cfp-hotkeys-container {
  display: flex !important;
  align-items: center;
  position: fixed;
  overflow: auto;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: pvar(--mainForegroundColor);
  font-size: 1em;
  background-color: pvar(--mainBackgroundColor);
}

.cfp-hotkeys-container.fade {
  z-index: -1024;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.15s linear;
}

.cfp-hotkeys-container.fade.in {
  z-index: z(hotkeys);
  visibility: visible;
  opacity: 1;
}

.cfp-hotkeys-title {
  font-weight: bold;
  text-align: center;
  font-size: 1.2em;
}

.cfp-hotkeys {
  width: 100%;
  max-height: 100%;
}

.cfp-hotkeys table {
  margin: auto;
  color: pvar(--mainForegroundColor);
}

.cfp-content {
  display: table-cell;
  vertical-align: middle;
}

.cfp-hotkeys-keys {
  padding: 5px;
  text-align: end;
}

.cfp-hotkeys-key {
  @include margin-right(5px);

  display: inline-block;
  color: pvar(--mainBackgroundColor);
  background-color: pvar(--mainForegroundColor);
  border: 1px solid pvar(--mainForegroundColor);
  border-radius: 5px;
  text-align: center;
  box-shadow: inset 0 1px 0 #666, 0 1px 0 #bbb;
  padding: 5px 9px;
  font-size: 1em;
}

.cfp-hotkeys-text {
  @include padding-left(10px);
  font-size: 1em;
}

.cfp-hotkeys-close {
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 2em;
  font-weight: bold;
  padding: 5px 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  min-height: 45px;
  min-width: 45px;
  text-align: center;
}

.cfp-hotkeys-close:hover {
  cursor: pointer;
  opacity: 0.8;
}

@media all and (max-width: $mobile-view) {
  .cfp-hotkeys {
    font-size: 0.8em;
  }
}

@media all and (min-width: 750px) {
  .cfp-hotkeys {
    font-size: 1.2em;
  }
}