-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
103 lines (90 loc) · 1.72 KB
/
Copy pathstyle.css
File metadata and controls
103 lines (90 loc) · 1.72 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
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans&display=swap');
body {
background: url('images/background.jpg') no-repeat;
background-attachment: fixed;
background-size: cover;
display: grid;
align-items: center;
justify-content: center;
height: 100vh;
}
.main {
background-color:rgb(255, 255, 255);
margin: auto;
margin-top: 0%;
margin-bottom: 0%;
width: 32rem;
height: 28rem;
border: 3px solid #e4bd12;
padding: 10px;
text-align: center;
font-family: 'Nunito Sans', sans-serif;
box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .2);
border-radius: 10px;
position: relative;
z-index: 1;
background: inherit;
overflow: hidden;
font-weight: bold;
}
.main:before {
content: "";
position: absolute;
background: inherit;
z-index: -1;
top: 0;
left: 0;
right: 0;
bottom: 0;
box-shadow: inset 0 0 2000px rgba(255, 255, 255, .5);
filter: blur(10px);
margin: -20px;
}
.main a:link {
color: #000000;
text-decoration: none;
/*border-left:1px solid #bbb;*/
}
.main a:visited {
color: #000000;
text-decoration: none;
}
.main a:hover {
color: #000000;
text-decoration: underline;
}
.main a:active {
color: #000000;
text-decoration: underline;
}
.button {
background-color: #d67a12; /* Green */
border: none;
color: white;
padding: 15px 15px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 14px;
}
.video {
position: relative;
}
/* -- Scrollbar -- */
/* Firefox */
* {
scrollbar-width: none;
scrollbar-color: #dcdcdc #151515;
}
/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
width: 8px;
}
*::-webkit-scrollbar-track {
background: #151515;
}
*::-webkit-scrollbar-thumb {
background-color: #dcdcdc;
border-radius: 5px;
border: 0px none #ffffff;
}