-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
107 lines (97 loc) · 2.12 KB
/
styles.css
File metadata and controls
107 lines (97 loc) · 2.12 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
:root {
--card-color: rgb(8, 5, 22);
}
.alert{
border-radius: 0;
}
*{
font-family: Roboto;
padding: 0;
margin: 0;
box-sizing: border-box;
}
.overlay{
position: fixed;
height: 100vh;
width: 100vw;
background: rgba(5, 1, 20, 0.773);
z-index: -1;
}
.main-content{
z-index: 2;
}
.bg{
position: fixed;
z-index: -2;
background: url('https://scontent.fbom12-1.fna.fbcdn.net/v/t1.0-9/89318844_2448940015207213_5286234499397451776_o.jpg?_nc_cat=107&_nc_sid=cdbe9c&_nc_ohc=9mye8Goy0HwAX-h1P9a&_nc_oc=AQlWTJyZmaprDy-0XEXuygKcwixGRzvuah9n2hmB38VyHMjCi5kZSqe7i5J_yr_15c4&_nc_ht=scontent.fbom12-1.fna&oh=7a726f81fe10509ef12b0c5b0703b4f8&oe=5F82F29D');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
height: 100%;
width: 100vw;
margin: 0;
padding: 0;
}
main{
}
.main-title{
font-family: 'Bebas Neue';
font-size: 6rem;
color: #222222;
/* text-shadow: 0px 0px 10px 10px black; */
text-shadow: 5px 5px black;
}
.scard{
display: flex;
/* justify-content: ; */
color: white;
height: 100%;
/* width: 0%; */
background: var(--card-color);
align-items: center;
border-radius: 10px;
cursor: pointer;
transition: transform 0.4s;
}
.scard:hover{
transform: scale(1.05);
box-shadow: 0 0 9px 2px rgba(27, 27, 27, 0.432);
}
.scard-title{
font-weight: 700;
font-size: 1.5rem;
}
.scard-cat{
font-weight: 400;
}
.scard-logo{
border-radius: 10px;
height: 100px;
width: 100px;
margin: 10px;
/* width: 20%; */
background: var(--card-color);
display: flex;
justify-content: center;
align-items: center;
}
.scard-logo img{
/* border-radius: 10px; */
/* height: 80px; */
width: 80px;
margin: 10px;
/* width: 20%; */
/* background: white; */
}
.scard-open{
font-size: 2rem;
color: white;
}
.scard-open:hover{
font-size: 2rem;
color: white;
}
.active{
/* text-decoration: uppercase; */
font-weight: 700;
}