-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (40 loc) · 914 Bytes
/
style.css
File metadata and controls
52 lines (40 loc) · 914 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
47
48
49
50
51
/* INSTRUCTIONS:
First, apply rules to the body tag to set the elements in a row.
Solve each dice seperately and then move onto the next.
*/
/* MAIN STYLES */
* {
box-sizing: border-box;
}
html, body {
height: 100%;
}
body {
font-family: 'Open Sans', sans-serif;
background: linear-gradient(top, #222, #333);
/*Add some your code here.*/
}
/*The [attribute$=value] selector matches every element whose attribute value ends with a specified value.*/
[class$="face"] {
margin: 16px;
padding: 4px;
background-color: #e7e7e7;
width: 104px;
height: 104px;
object-fit: contain;
box-shadow:
inset 0 5px white,
inset 0 -5px #bbb,
inset 5px 0 #d7d7d7,
inset -5px 0 #d7d7d7;
border-radius: 10%;
}
.pip {
display: block;
width: 24px;
height: 24px;
border-radius: 50%;
margin: 4px;
background-color: #333;
box-shadow: inset 0 3px #111, inset 0 -3px #555;
}