-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
85 lines (73 loc) · 1.21 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
min-height: 100vh;
text-align: center;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
font-family: Arial;
background-color: #8EC5FC;
background-image: linear-gradient(62deg, #8EC5FC 0%, #E0C3FC 100%);
}
header h1 {
font-weight: normal;
padding: 20px;
letter-spacing: 0.1em;
}
main {
}
.tuto {
margin: 20px auto;
}
.streak {
font-size: 24px;
margin: 20px auto;
padding: 4px 8px;
border-radius: 4px;
background: black;
color: white;
}
.card {
width: 200px;
height: 282px;
background: white;
margin: 20px auto;
border-radius: 8px;
border: solid 1px;
display: flex;
justify-content: center;
align-items: center;
font-size: 48px;
transition: all 0.8s;
transition-delay: -0.4s;
}
button {
margin: 0 auto 20px;
padding: 4px 8px;
background: white;
border: solid 1px;
cursor: pointer;
font-size: 18px;
}
button:hover {
background: black;
color: white;
border-color: black;
}
footer {
font-size: 14px;
padding: 10px;
}
footer a {
text-decoration: none;
color: #666;
}
footer a:hover {
text-decoration: underline;
color: #000;
}