-
Notifications
You must be signed in to change notification settings - Fork 1
/
long.css
75 lines (75 loc) · 1.74 KB
/
long.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
@import url("https://fonts.googleapis.com/css2?family=Inria+Serif:wght@700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Inria+Serif&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300&display=swap');
html {
font-size: 10px;
}
body {
margin: 0px;
padding: 0px 0px 0px 0px;
background-color: black;
}
.navvar {
z-index: -1;
text-align: center;
font-family: "Inria Serif", serif;
background-color: rgba(37, 36, 36, 0.5);
color: white;
font-size: 3rem;
padding: 1rem;
}
.navimg {
padding: 0px;
}
.st {
position: relative;
bottom: 25rem;
width: 100vw;
z-index: -10;
}
.op{
font-family: 'Inria Serif', serif;
text-align: center;
font-family: "Inria Serif", serif;
font-size: 30px;
color: white;
position: relative;
bottom: 19rem;
max-width: 45ch;
left: 35rem;
}
.pen{
display: flex;
gap: 9rem;
justify-content: center;
}
.b1 {
font-family: 'Lato', sans-serif;
color: #fff;
font-size: 10rem;
border: 3px solid #C274ED;
background-image: -webkit-linear-gradient( 30deg, #C274ED 50%, transparent 50% );
background-image: linear-gradient(30deg, #C274ED 50%, transparent 50%);
background-size: 500px;
background-repeat: no-repeat;
background-position: 0%;
-webkit-transition: background 500ms ease-in-out;
transition: background 500ms ease-in-out;
}
.B {
font-family: 'Lato', sans-serif;
font-size: 2.5rem;
width: fit-content;
padding: 0.5rem 1.5rem;
text-align: center;
color: #000;
text-transform: uppercase;
font-weight: 600;
cursor: pointer;
display: inline-block;
border-radius: 50px;
}
.b1:hover {
background-position: 100%;
color: #fff;
}