-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
123 lines (104 loc) · 2.01 KB
/
styles.css
File metadata and controls
123 lines (104 loc) · 2.01 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
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
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;
}
/* Checklist styles */
.progress {
display: flex;
flex-direction: column;
gap: 10px;
margin: 20px 0;
}
.checklist-item {
display: flex;
align-items: center;
gap: 10px;
flex-wrap: nowrap;
}
.checklist-item input[type="checkbox"] {
margin: 0;
flex-shrink: 0;
}
.checklist-item p {
margin: 0;
white-space: nowrap;
flex: 1;
}
.checklist-item.completed p {
text-decoration: line-through;
color: #888;
}
.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;
margin-top: 30px;
text-align: center;
font-size: 20px;
}
.cards{
display: flex;
flex-direction: column;
gap: 20px;
margin: 20px;
}
footer{
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding-top: 20px;
margin-top: 20px;
}
.text-block{
background-color: rgb(55, 55, 55);
padding: 30px;
border-radius: 10px;
margin: 20px;
}