-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
65 lines (62 loc) · 1.43 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
@import url('https://fonts.googleapis.com/css2?family=Tilt+Neon&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
color:white;
}
body{
width: 100%;
height: 100vh;
padding:10px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
background:linear-gradient(-75deg,#2d1b3d,rgba(45, 12, 65, 0.849),#5a1d94ef);
gap: 10px;
}
h3{
font-family: "Tilt Neon", sans-serif;
font-size:40px;
color:transparent;
-webkit-text-stroke-width:1px;
-webkit-text-stroke-color: white;
}
button{
width: 70px;
height: 40px;
border:1px solid white;
background: transparent;
outline: none;
font-family: "Tilt Neon", sans-serif;
font-size: 20px;
font-weight:lighter;
letter-spacing: 1px;
border-radius:8px;
}
button:hover{
background:linear-gradient(-45deg,#332044,rgb(45, 12, 65),#5a1d94);
font-size: 21px;
}
.text{
width: 300px;
height:111px;
font-size: 15px;
overflow-wrap: break-word;
border-radius: 5px;
padding: 20px;
text-align: center;
margin-left:10px ;
margin-right: 10px;
font-family: "Tilt Neon", sans-serif;
}
.text:hover{
cursor: pointer;
font-size:16px;
}
.itme{
position: absolute;
top: 10px;
right: 10px;
}