-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path0-styles.css
More file actions
46 lines (40 loc) · 709 Bytes
/
0-styles.css
File metadata and controls
46 lines (40 loc) · 709 Bytes
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
* {
box-sizing: border-box;
}
ul {
display: flex;
flex-direction: row;
list-style: none;
width: 100%;
padding-left: 1rem;
padding-right: 1rem;
margin-top: 1rem;
}
li {
border: solid .15rem #888888;
border-radius: .5rem;
margin: 2rem 1.5rem 1rem 1.5rem;
padding: 1rem 1rem 0 1rem;
font-size: 2.5rem;
font-weight: bolder;
min-width: 300px;
min-height: 500px;
text-align: center;
}
.icon {
height: 100%;
width: 100%;
display: block;
margin-top: 1rem;
background-image: url('0-sprite.png');
background-repeat: no-repeat;
}
.i-html {
background-position-x: -.25rem;
}
.i-css {
background-position-x: -18.25rem;
}
.i-js {
background-position-x: -36.5rem;
}