-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
75 lines (64 loc) · 1.36 KB
/
styles.css
File metadata and controls
75 lines (64 loc) · 1.36 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
body{
background-color: rgb(35, 35, 35);
color: white;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.game-button {
text-decoration: none;
padding: 20px 20px 20px 20px;
color: white;
background-color: lime;
border-radius: 10px;
transition: background-color 0.3s ease;
transform: translateY(-50%);
cursor: pointer;
}
.game-button:hover {
background-color: rgb(38, 187, 8);
}
nav {
display: flex;
flex-direction: row;
align-items: flex-end;
justify-content: right;
padding: 20px;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
nav ul{
list-style: none;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
gap: 20px; /* Spazio tra i link */
}
nav a{
text-decoration: none;
color: white;
padding: 10px 15px;
border-bottom: 2px solid transparent;
transition: border-bottom 0.3s ease;
}
nav a:hover{
border-bottom: 2px solid lime;
}
.profile {
display: flex;
align-items: center;
margin-top: 50px;
}
.profile-text {
margin-left: 30px;
}
.container{
background-color: rgb(55, 55, 55);
padding: 30px;
border-radius: 10px;
margin: 20px;
}
.cards{
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin: 20px;
}