-
Notifications
You must be signed in to change notification settings - Fork 0
/
amazon.css
104 lines (85 loc) · 1.34 KB
/
amazon.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
.flexbox-container{
display: flex;
justify-content: center;
}
.flexbox-item{
height: 280px;
width: 350px;
border: 3px solid lightgrey;
border-radius: 3px;
}
body{
margin-top: 3%;
text-align: center;
}
h1{
margin-right: 225px;
}
h3{
color: darkgray;
}
#email{
margin-top: 5px;
padding-right: 150px;
}
#email1{
margin-right: 110px;
}
#password{
margin-top: 5px;
padding-right: 150px;
}
#pass{
margin-right: 125px;
margin-left: 30px;
}
#help{
margin-right: 190px;
}
button{
background-color: yellow;
border-color: orange;
width: 330px;
height: 26px;
}
#create{
background-color: lightgray;
border-color: darkgray;
}
#cond{
display: flex;
margin-top: 50px;
margin-bottom: 20px;
}
.hline{
border-bottom: 3px solid rgb(80, 80, 78);
width: 100%;
margin: auto;
margin-top: 50px;
}
.hr-lines{
position: relative;
max-width: 350px;
margin-left: auto;
margin-right: auto;
text-align: center;
}
.hr-lines:before{
content:"";
height: 2px;
width: 100px;
background: darkgray;
display: block;
position: absolute;
top: 50%;
}
.hr-lines:after{
content:"";
height: 2px;
width: 100px;
background: darkgray;
display: block;
position: absolute;
top: 50%;
right: 0;
}