-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
105 lines (91 loc) · 1.71 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
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
body{
margin: 0;
font-family: 'Roboto', sans-serif;
background: #080808;
color: white;
}
.imgBG{
background: url("bg.png");
background-position: center center;
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
.infoSection{
background: #111111;
margin-top: -20px;
}
.logo{
width: 10rem;
margin-top: 10vh;
}
.btn{
margin-left: 3px;
margin-right: 3px;
background: rgb(138, 9, 212);
padding: 5px;
font-size: 20px;
text-decoration: none;
color: white;
transition: 0.2s;
box-shadow: 0 0 2px rgb(138, 9, 212);
border-radius: 5px;
}
.btn:hover{
background: rgb(148, 8, 230);
box-shadow: 0 0 8px rgb(148, 8, 230);
}
.feature{
background: #18181877;
box-shadow: 0 0 8px #181818;
width: 60vw;
height: 115px;
border-radius: 14px;
padding: 1px;
}
.link {
text-decoration: none;
color: white;
}
.link:hover {
text-decoration: underline;
}
.button {
background-color: rgb(52,52,52);
border: none;
color: white;
padding: 8px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
-webkit-transition-duration: 0.4s;
transition-duration: 0.4s;
border-radius: 10px;
}
.main-panel {
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
animation: fadeInAnimation ease 1.5s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
animation-duration: 0.8s;
}
.div1{
height: 150px;
overflow: hidden;
}
.svg1{
height: 100%;
width: 100%;
}
.path1{
stroke: none;
fill: rgb(17, 17, 17);
}