-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
88 lines (70 loc) · 1.32 KB
/
style.css
File metadata and controls
88 lines (70 loc) · 1.32 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
body {
margin: 0;
font-family: monospace;
font-size: 25px;
background-color: blanchedalmond;
}
h1 {
font-size: 70px;
}
button {
font-size: 20px;
font-family: monospace;
border: 5px solid;
border-radius: 20px;
background-color: #83F1F1;
}
button:hover{
box-shadow: 5px 5px black;
}
.container{
background-color: #EC85AD;
text-align: center;
position: relative;
max-width: 700px;
margin: auto;
padding: 1vw;
top: 10px;
border: 10px solid black;
border-radius: 45px;
box-shadow: 20px 20px black;
}
p{
display: inline-block;
border: 3px solid black;
margin: 15px;
background-color: white;
padding: 10px;
border-radius: 10px;
box-shadow: 5px 5px black;
}
input {
border: 5px solid black;
border-radius: 100px;
padding: 40px;
box-shadow: 5px 5px 10px black;
}
input:hover {
border: 7px solid black;
box-shadow: 7px 7px 10px black;
}
footer {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: auto;
width: 100vw;
padding-top: 40px;
margin-bottom: 10px;
text-align: center;
}
img {
width: 5rem;
transition: all 2s;
transform: scale(1.3);
}
button:hover {
transition: all 1s;
transform: scale(1.1);
}