-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
49 lines (42 loc) · 994 Bytes
/
styles.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
html, body {
font-family: 'Noto Sans JP', sans-serif;
background: #0f2027; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #0f2027, #203a43, #2c5364); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #0f2027, #203a43, #2c5364); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
color: white;
}
.container {
display: flex;
align-items: center;
justify-content: center;
flex-flow: column wrap;
}
.link-container {
border: 2px solid white;
height: 120px;
width: 320px;
margin: 16px 0;
display: flex;
justify-content: center;
align-items: center;
}
.link-container img {
width: 100px;
height: 100px;
}
.link-container span {
display: block;
font-size: 2em;
text-decoration: none;
}
.link-container a {
color: white;
text-decoration: none;
}
.link-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-flow: row wrap;
width: 290px;
}