-
Notifications
You must be signed in to change notification settings - Fork 0
/
storestyle.scss
113 lines (100 loc) · 2.13 KB
/
storestyle.scss
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
/* Allmän styling för sidan */
body {
font-family: 'Heebo', sans-serif;
overflow: hidden;
}
/* Stil för butikslogotypen */
.store_logo {
text-decoration: none;
color: white;
font-size: 2.5vw;
line-height: 5vw;
margin-left: 20px;
}
/* Stil för navigationsfältet */
.navbar {
background-color: rgb(51, 50, 50);
height: 5vw;
width: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 1000;
margin-bottom: 50px; /* Lägger till ett mellanrum under navigationsfältet */
border-radius: 0; /* Ingen rundning av hörnen */
}
/* Stil för navigationshuvudet */
.header {
display: flex;
justify-content: space-between;
align-items: center;
height: 100%;
}
/* Stil för navigationslänkar */
.nav {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
}
.nav-link {
text-decoration: none;
padding: 10px 4vw;
color: white;
font-size: 2.2vw;
display: inline-block;
line-height: 5vw;
}
/* Stil för bakgrundsbild som täcker hela sidan */
.wallpaper {
width: 100%;
height: 100%;
object-fit: cover;
position: fixed;
top: 0;
left: 0;
z-index: -1;
}
/* Stil för inloggningslänk */
.sign-in{
text-decoration: none;
color: white;
font-size: 1.5vw;
margin-right: 50px;
}
/* Stil för cirkulär rektangel */
.circular-rectangle {
position: absolute;
left: 2%;
top: 300%;
width: 30%;
max-width: 300px;
height: 15%;
background-color: rgba(255, 255, 255, 0.2);
border-radius: 24px;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}
/* Stil för butiksbeskrivning */
.store-description {
margin: 0;
font-size: 1.6vw;
color: #EE2737;
text-align: center;
}
/* Stil för jumbotron */
.jumbotron{
margin-bottom: 0;
}
/* Stil för sidfoten */
footer {
background-color: #f2f2f2;
padding: 25px;
}
/* Stil för panelinnehållet */
.panel-body{
align-items: center;
padding-left: 20%;
}