-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
109 lines (90 loc) · 1.64 KB
/
style.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
:root {
/* Colors */
--purple: #bd93f9;
--hover-purple: #9875ca;
--dark-purple: #19055a;
--dark: #383a59;
}
* {
font-family: 'Roboto', sans-serif;
}
body {
background-color: var(--dark);
color: #f2f2f2;
}
/* Background */
#bg-video {
position: fixed;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
}
/* Text Selection */
::-moz-selection {
/* Code for Firefox */
color: #1f1f1f;
background: var(--purple);
}
::selection {
color: #1f1f1f;
background: var(--purple);
}
/* Elements */
.title {
color: var(--purple);
font-weight: 700 !important;
}
.description {
letter-spacing: 0.099em;
font-style: italic;
font-variant: all-small-caps;
}
.btn-purple {
background: var(--purple) !important;
color: var(--dark-purple);
}
.btn-purple:hover {
background: var(--hover-purple) !important;
}
.container {
width: 100vw;
height: 100vh;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.main-content {
background: rgba(0, 0, 0, 0.5);
box-shadow: 0 4px 30px rgb(0 0 0 / 10%);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border: 1px solid rgba(0, 0, 0, 0.3);
padding: 15px;
position: fixed;
border-radius: 5px;
}
.flex {
display: flex;
}
.margin-15 {
margin: 15px;
}
.margin-bottom-15{
margin-bottom: 15px;
}
.display-none{
display: none;
}
.result{
background: rgba(0, 0, 0, 0.6);
border-radius: 5px;
}
/* Responsive */
@media (max-width: 820px) {
.btn-purple {
width: 100%;
margin: 5px 0 5px 0;
}
}