-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
81 lines (68 loc) · 1.48 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
/* styles.css */
/* i hate the css part */
@font-face {
font-family: 'Shermlock';
src: url('Fonts/shermlock/Shermlock.ttf') format('truetype'); /* Adjust the file path and format */
/* Add additional font formats if necessary (e.g., woff, woff2) */
}
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
text-align: center;
}
#titleHeader {
font-family: 'Shermlock', sans-serif;
display: flex;
align-items: center;
justify-content: center;
}
#logo {
width: 200px;
height: auto;
margin-right: 10px;
}
h1 {
color: #ff9100;
}
select {
margin: 5px;
}
button {
margin-top: 5px;
margin-bottom: 5px;
}
#display {
display: flex;
flex-wrap: wrap; /* Allow items to wrap onto the next line if needed */
}
#imageContainer {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
grid-gap: 6px;
justify-content: left;
min-width: 75%; /* forces images to take up 75% of screen width */
}
#imageContainer img {
width: 100%;
height: 100%;
}
#outfitContainer {
flex: 1;
text-align: center;
min-width: 25%; /* Set the maximum width to 25% of the viewport width */
}
#magicMirror {
width: 50%;
height: auto;
position: relative;
top: -250px; /* Adjust this value to move the image up */
}
#outfitSelection {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
top: -250px;
}