-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmainweb.css
More file actions
94 lines (94 loc) · 2.08 KB
/
mainweb.css
File metadata and controls
94 lines (94 loc) · 2.08 KB
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
/*Google Fonts*/
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,500;1,200;1,400;1,500&family=Rubik+Dirt&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;1,200;1,300;1,400&display=swap");
:root {
--primary-font: "Poppins", sans-serif;
--secondary-font: "Montserrat", sans-serif;
--header-font: "Josefin Sans", sans-serif;
--white-color: #fffffe;
}
* {
padding: 0;
margin: 0;
text-decoration: none;
box-sizing: border-box;
list-style-type: none;
font-family: var(--primary-font);
}
body {
width: 100vw;
display: flex;
align-items: center;
justify-content: center;
background-image: url(./Resources/hands.jpg);
background-repeat: no-repeat;
background-size: cover;
}
.top-nav {
width: 100vw;
height: 9vh;
background-color: rgba(29, 29, 29, 0.83);
justify-content: space-between;
display: flex;
justify-content: flex-end;
padding: 7px 13px;
}
nav ul li {
padding: 15px;
display: inline-block;
font-weight: 400;
}
nav ul li a {
font-size: 14px;
font-family: var(--secondary-font);
font-weight: 500;
justify-content: space-between;
color: var(--white-color);
margin: -7px;
padding: 5px 15px;
border-radius: 10px;
transition: 0.6s;
}
a:hover {
background-color: rgba(193, 187, 187, 0.83);
}
.start-container {
display: flex;
position: absolute;
top: 10%;
transform: translateY(-40%);
text-align: center;
color: var(--white-color);
}
.header h1 {
margin-top: 450px;
font-size: 50px;
font-family: var(--secondary-font);
}
.header p {
font-size: 20px;
font-family: var(--secondary-font);
font-weight: 500;
}
.me-container {
margin-top: 30px;
}
.me-container p {
margin-top: 5px;
}
.header {
text-shadow: 5px 5px 10px black;
}
.games-container {
position: absolute;
display: flex;
width: 100%;
height: 60vh;
margin-top: 40rem;
justify-content: center;
}
img {
margin-top: 20rem;
width: 140px;
padding: 5px;
}