-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
122 lines (99 loc) · 1.98 KB
/
style.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
103
104
105
106
107
108
109
110
111
/* CSS HEX
--prussian-blue: #1A2A3Bff;
--moonstone: #2D9DAAff;
--mint-green: #C0E9E8ff;
--coral: #EA8556ff;
--apricot: #FABEA2ff; */
body {
margin: 0;
background-image: url(vibrant-colors-wool-thread-abstract-pattern-generated-by-ai.jpg);
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed; /*Ceasiumtea*/
color: white;
font-family: Tahoma;
font-size: 16px;
}
h1,
p {
text-align: center;
background-color: #FABEA2ff;
color: white; /*not accessible*/
margin-left: auto;
margin-right: auto;
max-width: 500px;
}
h1 {
margin-top: 3rem;
}
form {
width: 60vw;
max-width: 700px;
min-width: 500px;
margin: 0 auto;
padding: 5px;
border-radius: 20px;
background-color: #1A2A3Bff;
}
fieldset {
background-color: #69A6A9ff;
border: 2px solid #C0E9E8ff;
border-radius: 10px;
margin: 1em;
}
select {
margin-left: 15px;
margin-top: 5px;
}
input[type="submit"] {
display: block;
width: 60%;
margin: 1em auto;
height: 2em;
font-size: 1.1rem;
background-color: #69A6A9ff;
border-color: #C0E9E8ff;
border-radius: 10px;
min-width: 300px;
color: white;
}
input, select,
textarea {
background-color: #FABEA2ff;
border: 1px solid #1A2A3Bff;
border-radius: 5px;
color: #1A2A3Bff;
}
legend {
float: left;
margin-top: 15px;
margin-right: 15px;
margin-bottom: 15px;
}
ul {
list-style-type: none;
margin-top: 4em;
padding: 0;
display: grid;
grid-auto-columns: 1fr;
grid-auto-rows: 1fr;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: 1fr 1fr 1fr 1fr;
gap: 0px 0px;
grid-template-areas:
"col1-item1 col2-item1 col3-item1"
"col1-item2 col2-item2 col3-item2"
"col1-item3 col2-item3 col3-item3"
"col1-item4 col2-item3 col3-item4"
"col1-item5 col2-item5 col3-item5";
}
/*Better than before - still needs a fer tweaks*/
input[type="checkbox"],
input[type="radio"],
label {
float: left;
line-height: 1.5em;
height: 2em;
margin: 0px 3px;
padding: 0px;
}