cirandas.net

ref: master

public/stylesheets/maps.scss


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
.action-maps-edit_location label.location-title {
  font-size: 20px;
  font-variant: small-caps;
  color: #555753;
  border-bottom: 2px solid #2e3436;
  margin: 10px 0px;
  font-weight: bold;
}

#content #location-support-fields {
  border-bottom: 1px solid #444;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;

  label {
    font-size: 10px;
    font-weight: normal;
    color: #444;
  }

  .location-support-fields-row {
    display: inline-flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;

    .formfieldline {
      width: 49%;

      &:first-child {
        padding-right: 10px;
      }

      input {
        width: 100%;
      }
    }

    &.button-bar {
      margin-bottom: 5px;

      a.button.with-text {
        margin-right: 0;
      }
    }
  }

  &.loading {
    cursor: progress;
    pointer-events: none;
    background: transparent url(../images/loading.gif) no-repeat scroll center 50px;
    opacity: 0.5;
  }
}

#signup-form #location-support-fields input {
  padding: 2px 0;
}

p.help-message {
  margin: 0;
  text-align: center;
  font-style: italic;
}

#location-fields {
  display: table;
  width: 100%;

  span {
    display: table-row-group;
  }


  #location-map {
    width: 100%;
    height: 320px;
  }

  #map {
    height: 500px;
    margin-top: 10px;
  }

  .map {
    clear: both;
  }
}