-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathday-1.css
More file actions
55 lines (49 loc) · 892 Bytes
/
day-1.css
File metadata and controls
55 lines (49 loc) · 892 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
52
53
54
55
*, *:before, *:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing:border-box;
}
html{
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
box-sizing:border-box
}
body { background: #eee; }
.left { float: left;}
.right { float: right;}
.smile {
position: relative;
z-index: 0;
background-color: yellow;
border: 6px solid #000;
width: 150px;
height: 150px;
border-radius: 100px;
margin: 50px auto;
box-shadow: 2px 2px 1px #ccc;
}
.eye {
position: relative;
width: 30px;
height: 30px;
border-radius: 100px;
background: #000;
margin-top: 35px;
margin-left: 30px;
}
.eye.right {
margin-left: 0;
margin-right: 30px;
}
.mouth {
position: absolute;
z-index: 1;
top: 10px;
left: 0;
right: 0;
height: 110px;
width: 115px;
margin: 0 auto;
border-bottom: 8px solid #000;
border-radius: 100%;
}