-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcd.css
43 lines (41 loc) · 942 Bytes
/
cd.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
body{
background-image: url(images/attention.jpg);
background-position: center;
background-repeat: no-repeat;
background-size:1000px;
background-attachment: fixed;
overflow: hidden;
background-color: #b0bbd1;
margin:10px;
padding:10px;
}
#container{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
padding-top: 200px;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
font-size: 20px;
font-style: bold;
}
button {
margin:1px;
width:90px;
height:30px;
margin:5px;
color:black;
border-radius: 30%;
outline: none;
box-shadow:-3px 3px 0px navy;
cursor: pointer;
transition: box-shadow 0.3s ease-in-out, transform 0.3s;
}
button:hover{
box-shadow: none;
transform: translateY(4px);
}
input{
font-size: 20px;
margin:0;
}