forked from CodeYourFuture/Module-Onboarding
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
36 lines (33 loc) · 657 Bytes
/
Copy pathstyle.css
File metadata and controls
36 lines (33 loc) · 657 Bytes
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
h1{
font-family: 'Times New Roman', Times, serif;
font-size: 1.5rem;
}
fieldset{
background-color: #becce2;
border: 2px solid #c0cde0;
border-style: solid;
border-radius: 0.5em;
margin: 1em auto;
padding: 1em;
width: 40em;
max-width: 800px;
}
legend{
color: #222;
background-color: #f6f9ff;
font-size: 90%;
padding: 1em 2em;
border: solid 1px #becce2;
border-radius: 0.3em;
}
fieldset > div{
padding: 0.5em 3em;
display: grid;
grid-template-columns: 2fr 4fr;
}
input, select, button{
border: solid 1px #becce2;
padding: 4px;
font-size: 1em;
border-radius: 0.3em;
}