-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
105 lines (85 loc) · 1.78 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
*{
padding:0px;
margin: 0px;
}
body{
background-color: #1A1A1D;
color: #e5e5e5;
font-family:fantasy;
}
body .header{
height:35vh;
margin-left: 450px;
}
body .header img{
height: 15vh;
margin-top: 15px;
margin-left: 240px;
}
body .body{
height:35vh;
border:2px solid red;
margin-left: 320px;
}
body .header{
height:20vh;
padding-right:60px;
}
body .body .sketch img{
margin-top: 350px;
margin-left: -1250px;
height:40vh;
transform: rotate(180deg);
}
body {
display: flex;
justify-content: center;
align-items: center;
font-family: 'monoton';
background: #000;
}
.header h2 {
position: relative;
padding-left: 100px;
text-transform: uppercase;
letter-spacing: 6px;
font-size: 1.2vw;
font-weight: 900;
text-decoration: none;
display: inline-block;
/*{ Enigma } {1/3--->4245} */
/* {Next Step--->https://drive.google.com/drive/folders/1lhNi8D6iRUccxR-XI5L5wbjdp2P2_P8K?usp=sharing} */
/* Dont Forget ME */
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
-moz-background-clip: text;
-moz-text-fill-color: transparent;
-ms-background-clip: text;
-ms-text-fill-color: transparent;
background-color: #47ff3a;
text-align: center;
animation: 0.2s shake infinite alternate;
}
@keyframes shake {
0% { transform: skewX(-15deg); }
5% { transform: skewX(15deg); }
10% { transform: skewX(-15deg); }
15% { transform: skewX(15deg); }
20% { transform: skewX(0deg); }
100% { transform: skewX(0deg); }
}
.header .button{
align-items: center;
margin-left:230px;
font-family: fantasy;
margin-right: 130px;
padding: 3px;
padding-left: 4px;
margin-top: 80px;
border: 1px solid white;
border-color: rgb(50, 115, 220);}
.button:hover{
color:red;
color:#FF851B;
font-size: 18px;
}