-
Notifications
You must be signed in to change notification settings - Fork 3
/
main.css
94 lines (88 loc) · 2.58 KB
/
main.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
#bgvideo {
position: fixed;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
filter: blur(2px);
}
div.background {
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
padding-top: 100px; /* Location of the box */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(255,255,255,0.4); /* White w/ opacity */
}
div.background form {
filter: blur(0px);
background: white;
width: 40%;
height: auto;
padding: 10px;
margin-left: auto;
margin-right: auto;
display: block;
border: none;
border-radius: 10px;
text-align: center;
font-family: Boogaloo;
transition: 0.4s;
}
div.background .holder {
filter: blur(0px);
background: white;
width: 40%;
height: auto;
padding: 10px;
margin-left: auto;
margin-right: auto;
display: block;
border: none;
border-radius: 10px;
text-align: center;
font-family: Boogaloo;
}
div.background form input[type=password] {
background: transparent;
color: black;
border: none;
text-align: center;
font-family: arial;
padding: 4px;
margin: 2%;
border-radius: 5px;
outline: none;
font-size: 25px;
}
div.background form input[type=submit] {
background: #0080ff;
color: white;
border: none;
width: 60%;
border: none;
font-size: 20px;
padding: 6px;
cursor: pointer;
border-radius: 10px;
}
div.background .holder button {
background: #0080ff;
color: white;
border: none;
width: 60%;
border: none;
font-size: 20px;
padding: 6px;
cursor: pointer;
border-radius: 10px;
}
@media only screen and (max-width: 900px) {
div.background form {
width: 90%;
}
}