-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsettings.css
102 lines (88 loc) · 1.87 KB
/
settings.css
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
90
91
92
93
94
95
96
97
98
99
100
101
102
/* * {
border: 1px black dotted;
} */
body{
background-color: white;
}
input[type=text] {
max-width: 27px;
font-size: 11px;
border: none;
background: hsl(0 0% 93%);
border-radius: .25rem;
padding: .25rem .5rem;
text-transform: uppercase;
text-align: center;
margin-right: 4px;
color: dimgrey;
}
::selection {
color: black;
background: rgb(187, 187, 187);
}
::placeholder {
text-align: center;
font-size: 11px;
color: rgb(191, 191, 191);
text-transform: none;
}
textarea {
max-width: 290px; /* Set to the maximum width you desire */
min-width: 200px; /* Set to the minimum width you desire */
max-height: 100px; /* Set to the maximum height you desire */
min-height: 100px; /* Set to the minimum height you desire */
font-size: 11px; /* Match with your other inputs or according to your preference */
border: none;
background: hsl(0 0% 93%); /* Same as your other input elements */
border-radius: .25rem;
padding: .25rem .5rem;
color: dimgrey;
resize: none; /* Disable resizing */
}
#title {
font-size: xx-large;
font-weight: bold;
margin: 0 0 5px 10px;
}
div,
td,
fieldset{
font-size: 13px;
}
#savesuccess{
font-size: 10px;
}
fieldset {
margin: 6px;
}
#foot {
display: flex;
flex-direction: row;
justify-content: flex-end;
margin-top: 20px;
}
.form-switch {
margin-left: -5px;
}
.btn {
color: black;
border: 1px solid black;
cursor: pointer;
display: block;
font-size: 16px;
padding: 3px;
margin: 10px;
max-width: 130px;
text-decoration: none;
width: 80px;
text-align: center;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
border-radius: 30px;
background: transparent;
}
.btn:hover {
background: rgba(192, 192, 192, 0.2);
}