-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
128 lines (118 loc) · 2.39 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
*{
margin:0;
padding: 0;
box-sizing: border-box;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.header {
position: fixed;
top: 0;
left: 0;
width: 100%;
padding: 1%;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 100;
}
.header::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url(darkgray.jpg) no-repeat center center;
background-size: cover;
opacity: 0.2;
z-index: -1;
}
body {
min-height: 100vh;
background: url(dark.jpg) no-repeat;
background-size: cover;
background-position: center;
}
.navbar {
display: flex;
margin-left: auto;
}
.navbar a {
position: relative;
font-size: 1.2em;
font-family: "audiowide", 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-weight: 500;
margin-left: 20px;
color: azure;
text-decoration: none;
}
.navbar a::before {
content: '';
position: absolute;
top: 100%;
left: 0;
width: 0%;
height: 2px;
background-color: white;
transition: 0.3s;
}
.navbar a:hover::before {
width: 100%;
}.menu{
position:relative;
left:5%;
width:40px;
height: 40px ;
border-radius: 50%;
}
.col{
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: 24px;
position: absolute;
top:40%;
right: 55%;
left: 7%;
color: rgb(215, 232, 245);
}
.continue{
position: relative;
left: 15%;
width: 150px;
color: rgb(0, 0, 0);
font-size: 16px;
padding: 12px 0;
border :0;
border-radius: 20px;
margin-top: 30px;
}
.card{
height: 500px;
width: 450px;
cursor: pointer;
box-sizing: border-box;
position: absolute;
top:20%;
bottom:40%;
right: 30%;
left: 50%;
background-image: url("llawliet.jpg");
background-position: center;
background-size: cover;
transition: transform 0.5s;
border-radius: 10px;
}
.card:hover{
transform: translateY(-10px);
}
.intro{
font-size: 40px;
font-weight: 500;
font-family: 'Times New Roman', Times, serif;
color :rgb(215, 232, 245) ;
}
.name{
font-size: 72px;
font-weight: 800;
font-family: 'Times New Roman', Times, serif;
color :rgb(221, 115, 115);
}