-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
100 lines (85 loc) · 1.5 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
body{
font-family: 'Open Sans', sans-serif;
font-size: 12px;
text-align: center;
top: 5%;
margin: 0;
background-image: linear-gradient(90deg, #c697ff, #ff5d6d);
}
h1{
font: 300 2rem 'Open Sans', sans-serif;
color: #525f7f;
text-align: center;
padding: 1vh 0px;
margin: 0px 0px;
}
h2{
font: 200 1.2rem 'Open Sans', sans-serif;
color: #525f7f;
padding: 1vh 0px 0px 0px;
margin: 0px 0px;
}
h4{
font: 200 0.8rem 'Open Sans', sans-serif;
color: #525f7f;
}
h3{
color: #9e9e9e;
font: 200 1rem 'Open Sans', sans-serif;
text-align: center;
padding: 0px 0px 3vh 0px;
margin: 0px 0px;
}
#colorinfo{
padding: 15px 10px;
background-color: #ffffff;
width: 60%;
margin: auto;
margin-top: 15vh;
box-shadow: 0px 0px 10px 5px #00000044;
}
@media(min-width: 900px){
#colorinfo{
width: 40%;
}
}
@media(min-width: 1200px){
#colorinfo{
width: 30%;
}
}
h4#clickinstruction {
padding-bottom: 0px;
margin-bottom: 5px;
}
#gradientdiv{
padding-top: 5%;
width: 100%;
height: 85vh;
}
/*Styling Input*/
input[type="color"] {
-webkit-appearance: none;
border: 1px;
border-radius: 50%;
width: 32px;
height: 32px;
}
/*Randomize Button*/
.button {
background-color: #ffffff;
border: 1px solid #878787;
color: #525f7f;
padding: 5px 5px;
text-align: center;
text-decoration: none;
display: inline-block;
font: 200 0.8rem 'Open Sans', sans-serif;
margin: 0px auto 0px auto;
}
.button:hover{
transition-duration: 0.3s;
background-color: #878787;
border: 1px solid #878787;
color: #ffffff;
}