summaryrefslogtreecommitdiff
path: root/app/javascript/stylesheets/core.css
blob: 15b234b2a500b15fd99984de20c82b6dbd1ca46c (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
a {
  @apply underline text-blue-800;
}
a:hover {
  @apply text-blue-500;
}

p {
  margin-top: 1rem;
}

label {
  @apply mb-2;
}

input {
  @apply border border-black p-1;
}
input:focus {
  @apply outline-none border;
}

button, [type="button"], [type="reset"], [type="submit"] {
  @apply py-1 px-2 cursor-pointer;
}
button:hover, [type="button"]:hover, [type="reset"]:hover, [type="submit"]:hover {
  @apply bg-gray-300;
}

button:focus, [type="button"]:focus, [type="reset"]:focus, [type="submit"]:focus {
}

select {
  @apply border border-black p-1;
}
select:focus {
  @apply border-gray-700;
}

textarea {
  @apply border border-black p-1;
}
textarea:focus {
  @apply border-gray-700;
}