forked from CodeYourFuture/HTML-CSS-Module-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstore.css
More file actions
78 lines (68 loc) · 1.19 KB
/
store.css
File metadata and controls
78 lines (68 loc) · 1.19 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
.but{
color: #fff;
background-color: orangered;
border-radius: 5px;
padding: 10px 30px;
margin: 50px 0;
}
.store-section{
display: flex;
flex-direction: row-reverse;
}
.store-img{
height: 550px;
width: auto;
}
.column-form{
display: flex;
flex-direction: column;
}
.row-form
{
display: flex;
flex-direction: row;
justify-content: start;
width: 400px;
}
.store-form{
padding-right: 150px;
}
.form-header{
color: orangered;
font-weight: 500;
display: flex;
justify-content: center;
align-items: center;
}
fieldset{
border: none;
}
.spc{
margin-right: 20px;
}
input[type='radio']:after {
width: 15px;
height: 15px;
border-radius: 15px;
top: -2px;
left: -1px;
position: relative;
background-color: #d1d3d1;
content: '';
display: inline-block;
visibility: visible;
border: 2px solid white;
}
input[type='radio']:checked:after {
width: 15px;
height: 15px;
border-radius: 15px;
top: -2px;
left: -1px;
position: relative;
background-color: #ffa500;
content: '';
display: inline-block;
visibility: visible;
border: 2px solid white;
}