-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
141 lines (110 loc) · 2.01 KB
/
styles.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
*
{
margin: 0;
padding: 0;
font-family: sans-serif;
}
.marky{
position: relative;
width: 100%;
height: 100vh;
background-image: url("images/HAHAHA.gif");
background-repeat: no-repeat;
background-attachment: fixed;
background-position: 100% 100%;
background-size: cover;
position: relative;
padding: 10px;
color: rgb(255, 255, 255);
font-size: 25px;
border: 1px solid black;
animation: blink 5s infinite;
}
.dark-mode {
background-color: black;
color: white;
}
nav{
display: flex;
width: 84%;
margin: auto;
padding: 20px 0;
align-items: center;
justify-content: space-between;
}
.logo{
width: 100px;
cursor: pointer;
}
nav ul li {
display: inline-block;
list-style: none;
margin: 10px 20px;
}
nav ul li a{
text-decoration: none;
color: rgb(255, 255, 255);
font-weight: bold;
}
nav ul li a:hover{
color: rgb(83, 48, 180);
}
.details{
margin-left: 8%;
margin-top: 15%;
}
.details h1{
font-size: 60px;
color: hsl(271, 68%, 50%);
margin-bottom: 10px;
}
span{
color: orange;
}
.details p{
color: #e9e5e5;
line-height: 22px;
}
.details a{
background: #212121;
padding: 10px 18px;
text-decoration: none;
font-weight: bold;
color: #fff;
display: inline-block;
margin: 30px 0;
border-radius: 5px;
}
.images{
width: 45%;
height: 80%;
position: absolute;
bottom: 0;
right: 90px;
}
.images img{
height: 100%;
position: absolute;
left: 50%;
bottom: 0;
transform: translateX(-50%);
transition: bottom 1s, left 1s;
}
.images:hover .shape{
bottom: 40px;
}
.images:hover .me{
left: 45%;
}
.social{
margin-left: 8%;
margin-top: 100px;
}
.social a{
font-size: 30px;
color: #1c278b;
margin-right: 20px;
}
.social a:hover{
color: orange;
}