This repository was archived by the owner on Oct 2, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 461
Expand file tree
/
Copy pathstyles.css
More file actions
113 lines (107 loc) · 1.75 KB
/
styles.css
File metadata and controls
113 lines (107 loc) · 1.75 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
:root{
--dark : #293241;
--orang: #eb9681;
--sky: #e0fbfc;
--light: #98c1d9;
--gray: #143764;
--white: #fff;
--balck: #000;
}
body{
background-color: var(--gray);
}
h1{
color: var(--orang);
}
h3{
color: var(--light);
}
h2{
color: var(--white);
}
header{
display: flex;
flex-direction: column;
align-items: center;
padding-top: 20px;
}
header h2{
padding-top: 3px;
}
.form-box{
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
color: var(--sky);
}
.form-box label{
padding: 8px;
}
.t-shirt{
display: flex;
align-items: center;
justify-content: center;
padding-top: 10px;
flex-direction: column;
color: var(--sky);
}
.t-shirt > label{
padding-top: 5px;
}
.t-shirt > label > input{
padding: 8px;
}
.color > h3{
display: flex;
align-items: center;
justify-content: center;
padding-top: 5px;
}
.color {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding-top: 10px;
}
.color>div>label {
padding-top: 5px;
color: var(--sky);
}
.size{
display: flex;
align-items: center;
justify-content: center;
padding-top: 5px;
flex-direction: column;
color: var(--sky);
}
.hero{
margin: 0;
padding: 0;
}
.hero h3{
display: flex;
align-items: center;
justify-content: center;
}
.hero > label{
display: flex;
align-items: center;
justify-content: center;
padding-top: 5px;
flex-direction: row;
color: var(--sky);
}
footer{
display: flex;
align-items: center;
justify-content: center;
margin: 50px;
margin-top: 25px;
}
footer > em{
font-size: 1.4rem;
color:var(--orang);
}