-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrod.css
executable file
·173 lines (146 loc) · 2.89 KB
/
rod.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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
@media (min-width: 1024px) {
#container {
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr;
}
.bgPicture {
background-size: cover;
width: auto;
height: 100vw;
-webkit-background-size: cover;
-moz-background-size: center cover;
background-position: center bottom;
}
/****************** KONTAKT ***********************/
#kontaktOplysninger {
border: red 3px solid;
position: absolute;
left: 2vw;
top: 18vh;
width: 30vw;
margin-left: 35%;
background: rgba(0, 0, 0, 0.5);
padding: 3vw;
height: 50vh;
z-index: 2;
/* display: flex;*/
margin-left: 5vw;
}
#kontaktBody {
width: 100%;
z-index: 2;
border: pink 1px dotted;
}
#adress {
position: absolute;
/* bottom: 3vw;*/
/* right: 27vw;*/
font-weight: bold;
z-index: 2;
}
/****************** SOCIALE MEDIER ***********************/
#someContainer {
display: flex;
width: 100%;
justify-content: space-around;
}
.someWrapper {
/* width: 100%;;*/
border: 2px blue dotted;
display: inline-block;
}
#someLinkContainer {
border: red 3px solid;
position: relative;
/* bottom: 5vh;*/
left: 0vw;
/* float: left;*/
transform: scale(0.8);
z-index: 2;
}
#someHeadlineContainer {
border: 2px solid yellow;
/* width: 100%;*/
position: relative;
left: 0vw;
/* float: left;*/
/* bottom: 2vw;*/
z-index: 2;
/* transform: scale(0.5);*/
}
.someImg {
position: relative;
z-index: 2;
}
.someHeadline {
font-size: 1em;
}
/****************** KORT ***********************/
iframe {
border: solid blue 3px;
width: 37vw;
z-index: 2;
height: 62vh;
/* padding: 3vw;*/
}
}
/*KONTAKT FORVIRRING CSS*/
<style>
/****************** KONTAKT ***********************/
#container {
height: 100vh;
width: 100vw;
display: grid;
grid-template-columns: 1fr;
grid-template-rows: 1fr 1fr;
}
#kontaktOplysninger {
width: 80vw;
margin-left: 5%;
margin-right: 55;
background: rgba(0, 0, 0, 0.5);
z-index: 3;
left: 0vw;
top: 0vw;
}
#kontaktBody {
width: 50vw;
z-index: 2;
border: pink 1px dotted;
list-style: none;
}
#kontaktHeadline {
margin: 0;
}
/****************** SOCIALE MEDIER ***********************/
#someContainer {
/* width: 100vw;*/
text-align: center;
}
.someImg {
width: 50px;
filter: invert();
}
.someHeadline {
font-size: 1em;
}
#adress {
text-align: center;
}
iframe {
/* width: 100vw;*/
/* height: 40vh;*/
/* position: relative;*/
/* top: 0vw;*/
/* left: 0vw;*/
border: red 2px solid;
}
.bgPicture {
background-size: cover;
width: auto;
height: 100vh;
-webkit-background-size: cover;
-moz-background-size: center cover;
background-position: center top;
}
</style>