-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
53 lines (47 loc) · 812 Bytes
/
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
h1 {
font-size: 70px;
}
.index {
width: 100vw;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 30px;
}
.outerLink {
color: #fff;
}
.outerLink:hover {
font-size: 2rem;
}
.challenges {
background-color: var(--primary);
padding: 40px;
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: 10px;
}
.link {
flex-basis: 300px;
flex-grow: 1;
flex-shrink: 0;
max-width: 400px;
height: 250px;
padding: 10px;
border-radius: 3px;
background-color: var(--secondary);
text-align: center;
display: flex;
align-items: center;
justify-content: center;
word-wrap: break-word;
text-decoration: none;
outline: none;
font-size: 20px;
color: var(--primary);
}
a:link:active:hover:visited {
text-decoration: none;
}