-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathstyle.css
155 lines (129 loc) · 2.27 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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
/* Root Styles CSS */
:root {
background-color: white;
font-family: Avenir, Helvetica, sans-serif;
color: black;
}
/* Header CSS */
.header-container {
overflow: hidden;
padding: 20px 10px;
padding-bottom: 60px;
}
.header-left {
float: left;
height: 100px;
width: 310px;
}
.header-left img {
padding-top: 8px;
height: 80px;
}
.header-left h1 {
float: right;
font-size: 45px;
}
.header-right {
float: right;
padding-top:30px;
padding-right:10px;
}
.header-right button {
background-color: white;
border: solid;
border-width: 3px;
border-color: rgb(3, 7, 89);
border-radius: 0.1rem;
border-radius: 16px;
box-sizing: border-box;
color: rgb(3, 7, 89);
cursor: pointer;
padding: 15px 16px;
text-align: center;
text-transform: uppercase;
touch-action: manipulation;
width: 80px;
}
/* Home page CSS */
main {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
}
.card {
width: 300px;
height: 400px;
background: transparent;
border-style: solid;
border-width: 3px;
border-color: rgb(3, 7, 89);
border-radius: 0.3rem;
box-shadow: 12px 12px 2px 1px rgba(0, 0, 255, 0.057);
margin-top: 0px;
margin-left: 20px;
margin-right: 40px;
margin-bottom: 60px;
}
.card img {
height: 100%;
}
.top-container {
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
height: 250px;
}
.bottom-container {
margin-top:30px;
margin-left: 10px;
}
.bottom-container h3 {
margin-top: 10px;
margin-bottom: 6px;
}
.bottom-container p {
margin: 2px;
}
.bottom-container a {
color: rgb(228, 16, 133);
text-decoration: none;
}
/* 404 Page CSS */
.fof-container{
display: table;
width: 100%;
height: 100vh;
text-align: center;
color: black;
}
.fof {
display: table-cell;
vertical-align: middle;
}
.fof h1 {
color:rgb(26, 25, 25);
font-size: 50px;
display: inline-block;
padding-right: 12px;
animation: type .6s alternate infinite;
}
@keyframes type {
from {box-shadow: inset -3px 0px 0px #888;}
to {box-shadow: inset -3px 0px 0px transparent;}
}
/* Detail Page CSS*/
.gift-info {
display: flex;
flex-direction: row;
}
.image-container {
padding-left: 100px;
width: 40vw;
}
.image-container img {
width: 80%;
}
.gift-details {
width: 45vw;
}