Welcome to mirror list, hosted at ThFree Co, Russian Federation.

contact.css « css « assets - github.com/de-souza/hugo-flex.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5241a52875cc88b66f312bf5299cb9e72b4ae7da (plain)
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
.Contact {
  max-width: 30rem;
  margin: 1.5rem auto;
}

.Contact-group {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.Contact-hidden {
  display: none;
}

.Contact-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0.5rem 0;
}

.Contact-label {
  flex-basis: 5rem;
}

.Contact-input {
  flex-grow: 1;
  flex-basis: 15rem;
}

.Contact-input--textbox {
  resize: vertical;
  height: 5rem;
}

.Contact-button {
  margin-left: auto;
}