-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
94 lines (86 loc) · 1.64 KB
/
index.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
body {
margin: 0;
padding: 0 ;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.imgbox {
display: grid;
height: 100%;
}
.center-fit {
max-width: 100%;
max-height: 100vh;
margin: auto;
}
.logo {
position: absolute;
z-index: 2;
}
#projecten {
max-width: 100%;
max-height: 100vh;
padding-right: 15px;
margin-right: auto;
margin-left: auto;
z-index: 1;
position: absolute;
}
.imgbox a {
position: absolute;
bottom:0;
right:0;
}
.clickbaar {
cursor: pointer;
}
text.pointer {
cursor: pointer;
}
circle.pointer {
cursor: pointer;
}
.text {
text-align: center;
font-family: "Segoe UI";
color: white;
margin-left: 25pt;
margin-right: 25pt;
}
#popupContainer {
display:none;
box-sizing:border-box;
width:560px; padding:30px 40px;
position:fixed; left:50%; z-index:10000; margin-left:-280px;
background:#ECF0F1;
border-radius: 10px;
box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.27);
}
#popupClose {
position:absolute; right:0; top:0;
font-size:20px; color:#22313F;
cursor:pointer;
}
/*---Popup Msg---*/
#popupMsg {margin-bottom:20px; color:#22313F;}
#popupMsgheader {
font-size:30px;
text-align: center;
font-weight: bold;
font-family: "Segoe UI";
}
#popupMsgsubheader {
font-size:20px;
font-family: "Segoe UI";
text-align: left;}
.field {
width:450px; height:45px;
background:rgba(0,0,0,0);
}
#popupOverlay {
width:100%; height:100%;
position:fixed; left:0; top:0;
z-index:9999;
background:rgba(0,0,0,0.5);
display:none;
}