-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
98 lines (85 loc) · 1.67 KB
/
Copy pathstyles.css
File metadata and controls
98 lines (85 loc) · 1.67 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
92
93
94
95
96
97
98
* {
margin: 0;
padding: 0;
box-sizing: border-box;
line-height: 1;
}
body {
color: #ffffff;
font-family: 'Roboto', sans-serif;
background-image: linear-gradient(90deg,hsl(300, 24%, 70%),hsla(241, 76%, 53%, 0.397));
font-size: 16px;
line-height: 1.6;
}
#title, #description {
text-align: center;
margin-top: 2rem;
font-size: 2rem;
}
form {
margin: 2rem auto;
padding: 1rem;
width: 80%;
border: 0px solid #333;
border-radius: 5px;
background-color: hsla(241, 76%, 53%, 0.397);
}
fieldset {
margin: 2rem auto;
display: flex;
flex-direction: column;
align-items: center;
padding: 1rem;
width: 80%;
border: 0px solid #333;
border-radius: 5px;
background-color: hsla(241, 76%, 53%, 0.397);
text-align: center;
font-size: 2.5rem;
font-weight: bold;
}
legend {
font-size: 1.5rem;
font-weight: bold;
text-align: right;
}
label {
text-align: left;
display: block;
margin: 1rem 0;
font-size: 1.5rem;
}
.input, input {
width: 50%;
display: block;
padding: 0.5rem;
margin: 0.5rem 0;
font-size: 1.5rem;
border: 1px solid #333;
border-radius: 10px;
border-style: solid;
border-color: hsl(300, 24%, 70%);
border-width: 1px;
background-color: hsla(241, 76%, 53%, 0.397);
color: white;
}
.drop {
position: absolute;
width: 60%;
}
::placeholder {
opacity: 0.7;
color: white;
}
input[type="radio"]{
margin: 0.4rem;
width: 1rem;
height: 1rem;
cursor: pointer;
}
.radio-container {
display: flex;
align-items: center;
justify-content: center;
margin: 2rem;
}