-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
70 lines (56 loc) · 1.11 KB
/
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
body {
background-color: rgb(244, 222, 222);
}
.outer {
/* border: 2px solid green; */
padding: 60px;
width: max-content;
position: absolute;
background-color: aqua;
border-radius: 25px;
box-shadow: -10px -20px 300px rgb(228, 211, 211);
top: 50%;
left: 50%;
border:none;
transform: translate(-122px, -200px);
}
#emoji {
/* border: 2px solid; */
height: 100px;
padding: 100px 100px 100px;
margin: 25px;
width: 100px;
font-size: 3.3rem;
justify-content: center;
border-radius: 25px;
animation-timing-function: ease-in-out;
transform: translateX(20px);
}
#emoji:hover{
cursor: pointer;
}
button {
display: inline-block;
background: transparent;
padding: 10px;
border-radius: 10px;
text-align: center;
color: red;
background-color: antiquewhite;
border: none;
width: 72px;
}
button:hover {
border: 3px solid gold;
cursor: pointer;
color: blue;
}
@media (max-width:1000px) {
h1 {
color: red;
text-align: center;
}
div button {
margin: auto;
}
}