-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
85 lines (75 loc) · 1.59 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
flex-direction: row;
font-family: 'Quicksand', sans-serif;
position: relative;
padding: 2em;
}
h2 {
color: #fff;
text-shadow: 0 5px 5px rgb(0, 0, 0);
padding: 2em;
padding-bottom: 1.5em;
letter-spacing: 1.2px;
}
h1 {
color: #fff;
text-shadow: 0 5px 5px rgb(0, 0, 0);
padding: 0.8em;
letter-spacing: 1.5px;
}
input[type="color"] {
width: 235px;
height: 50px;
border: none;
outline-style: none;
outline: none;
cursor: pointer;
box-shadow: 0 10px 15px #111;
position: relative;
left: 10% !important;
}
.container{
padding: 2em;
}
span {
color: #fff;
display: block;
font-size: 50px;
font-family: 'Quicksand', sans-serif;
margin-bottom: 20px;
text-shadow: 0 5px 10px #000;
letter-spacing: 5px;
}
.colorBtn {
padding: 10px 20px;
color: #fff;
font-family: 'Quicksand', sans-serif;
text-transform: capitalize;
letter-spacing: 1.2px;
outline: none;
background-color: transparent;
cursor: pointer;
box-shadow: 0 10px 15px #111;
text-shadow: 0 5px 10px #000;
font-size: 18px;
border: none;
border-radius: 3%;
}
@media only screen and (max-width: 600px){
body {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column-reverse;
}
}