-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
65 lines (55 loc) · 1.07 KB
/
index.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
/* margin: ; */
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-image: linear-gradient(to right, red, blue);
}
.container h1 {
font-size: 55px;
position: relative;
top: -50px;
font-family: 'Sacramento', cursive;
}
.input {
text-align: center;
}
a{
text-decoration: none;
font-size: 25px;
color:white;
background-color: transparent;
padding: 10px 20px;
position: relative;
top:30px;
border:2px solid white;
}
a:hover {
/* background-color: rgb(255, 255, 255); */
border:2px solid black;
}
input[type="color"] {
appearance: none;
-moz-appearance: none;
-webkit-appearance: none;
background: none;
border: 0;
cursor: pointer;
height: 60px;
padding: 0;
width: 60px;
}
label {
position: relative;
bottom: 20px;
font-size: 20px;
padding-left: 15px;
font-family: 'Montserrat', sans-serif;
}