-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
91 lines (75 loc) · 1.08 KB
/
Copy pathstyles.css
File metadata and controls
91 lines (75 loc) · 1.08 KB
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
/* css reset */
html {
height: 100%;
}
body {
margin: 0px;
height: 100%;
font-family: sans-serif;
}
h1 {
margin: 0px;
}
p {
margin: 0px;
}
fieldset {
border: 0px;
margin: 0;
padding: 0;
}
/* ----------------------- */
h1{
text-align: center;
}
header {
margin-bottom: 25px;
}
hr {
margin-top: 15px;
margin-bottom: 30px;
height: 1px;
background-color: black;
border: none;
}
header p {
text-align: center;
}
.container {
padding: 50px 0;
background-color: #FFDE59;
}
form {
background-color: #C069F6;
width: 60vw;
max-width: 500px;
min-width: 300px;
margin: 0 auto;
padding: 15px;
border: 5px solid black;
border-radius: 15px;
}
input,
textarea,
select {
margin: 10px 0 0 0;
width: 98%;
min-height: 2em;
padding: 0;
border: 0;
background-color: #C069F6;
padding: 1%;
border: 1px solid black;
}
::placeholder {
color: #212529;
}
label {
display: block;
margin: 0.5rem 0;
}
.inline {
width: unset;
margin: 0 0.5em 0 0;
vertical-align: middle;
}