-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
137 lines (121 loc) · 1.93 KB
/
style.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: monospace;
}
.header {
display: flex;
justify-content: center;
background-color: #515da2;
height: 14rem;
padding-top: 4rem;
opacity: 8;
}
.logo {
height: 6rem;
width: auto;
}
button {
position: relative;
background-color: #e04b52;
border: 1px solid #e04b52;
border-radius: 5px;
height: 3rem;
width: max-content;
color: whitesmoke;
font-size: 18px;
justify-self: center;
padding: 0px 10px;
cursor: pointer;
margin-top: 20px;
}
button:hover {
background-color: whitesmoke;
border: #e04b52 solid 1px;
color: #e04b52;
}
.add-toy-form {
width: 80%;
margin-left: 20px;
}
h3 {
font-size: 2rem;
padding: 10px 0px;
color: #e04b52;
}
.submit {
position: relative;
background-color: #e04b52;
border-radius: 5px;
height: 2rem;
width: max-content;
color: whitesmoke;
font-size: 18px;
justify-self: center;
font-family: monospace;
margin: 3px;
padding: 0px 10px;
}
.submit:hover {
background-color: whitesmoke;
border: #e04b52 solid 1px;
color: #e04b52;
}
.input-text {
border-radius: 5px;
height: 2rem;
width: 40%;
font-size: 18px;
font-family: monospace;
margin: 3px;
padding-left: 10px;
}
.container {
padding: 1rem;
width: stretch;
height: auto;
display: none;
background-color: #515da2;
opacity: 8;
}
p {
font-size: 20px;
font-weight: 900;
}
.card {
text-align: center;
border: grey solid 1px;
padding: 1rem;
width: 15rem;
height: 25rem;
display: inline-grid;
margin: 1rem 1rem;
box-shadow: 3px 4px #e04b52;
}
.toy-avatar {
justify-self: center;
height: 12rem;
width: auto;
}
#loading {
margin-top: 30px;
text-align: center;
font-size: 25px;
color: #e04b52;
}
#main-container {
margin: 2rem;
}
@media screen and (max-width: 385px) {
p {
padding-top: 30px;
}
}
@media screen and (max-width: 800px) {
.input-text {
width: 100%;
}
}