-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
139 lines (117 loc) · 2.78 KB
/
style.css
File metadata and controls
139 lines (117 loc) · 2.78 KB
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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100&display=swap');
.text-title {
text-align: center;
}
.text-title---text {
font-family: 'Poppins', sans-serif;
font-size: 5rem;
color: cornsilk;
-webkit-touch-callout: none;
/* iOS Safari */
-webkit-user-select: none;
/* Safari */
/* Konqueror HTML */
-moz-user-select: none;
/* Old versions of Firefox */
-ms-user-select: none;
/* Internet Explorer/Edge */
user-select: none;
/* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}
/* Make background cover the whole screen */
body {
margin: 0;
padding: 0;
height: 100%;
overflow: hidden;
background: url(background.svg) no-repeat;
background-size: 100vw auto;
}
@media (orientation: portrait) {
body {
background-size: 100vh auto;
}
}
button {
margin: 7.5px;
padding: 1.3em 3em;
font-size: 12px;
text-transform: uppercase;
letter-spacing: 2.5px;
font-weight: 500;
color: #000;
background-color: #fff;
border: none;
border-radius: 45px;
box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease 0s;
cursor: pointer;
outline: none;
-webkit-touch-callout: none;
/* iOS Safari */
-webkit-user-select: none;
/* Safari */
/* Konqueror HTML */
-moz-user-select: none;
/* Old versions of Firefox */
-ms-user-select: none;
/* Internet Explorer/Edge */
user-select: none;
/* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}
button:hover {
background-color: transparent;
-webkit-backdrop-filter: brightness(1.2);
backdrop-filter: brightness(1.2);
box-shadow: 0px 15px 20px rgba(66, 66, 66, 0.4);
color: #fff;
transform: translateY(-7px);
}
button:active {
transform: translateY(-1px);
}
/* center the buttons inside of .buttons horrizontally */
.buttons {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
margin-top: 2em;
}
footer {
position: absolute;
bottom: 0;
width: 100%;
background-color: transparent;
}
p.copyright {
position: absolute;
width: 100%;
color: black;
line-height: 40px;
font-size: 1em;
text-align: center;
bottom:0;
font-family: 'Poppins', sans-serif;
font-weight: bold;
}
a:link { text-decoration: none; }
a:visited { text-decoration: none; }
a:hover { text-decoration: none; }
a:active { text-decoration: none; }
a {
color: black;
}
.iframe-container > iframe {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
transform: scale(0);
transition: all 0.5s;
}
/* add smooth transition for #links */
html {
scroll-behavior: smooth;
}