summaryrefslogtreecommitdiff
path: root/assets/css/pages/guestbook-form.css
blob: b45feaa5e12b1bd1747f20dd471c8c4066186b1b (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
40
41
42
43
44
45
46
47
48
49
50
51
/* Pure light theme — NO container, NO black */
body {
    background: transparent;
    margin: 0;
    padding: 10px;
    font-family: "Source Code Pro", monospace;
    color: #3a2a00;
    overflow-y: auto;
    overflow-x: hidden;
    /* Hide scrollbar for Chrome, Safari and Opera */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
body::-webkit-scrollbar {
    width: 0;
    height: 0;
}

/* Remove all container styling */
form {
    max-width: 900px;
    margin: 0 auto;
}

/* Slight spacing between form and messages */
form {
    margin-bottom: 20px;
}

input[type="text"], textarea {
    border: 1px solid transparent;
    background: transparent;
    color: #3a2a00;
    font: inherit;
    box-sizing: border-box; /* Include padding in width */
    margin-bottom: 10px;
}

textarea {
    resize: vertical;
}

button {
    background: transparent;
    border: 1px solid transparent;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font: inherit;
    color: #3a2a00;
}