-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
80 lines (73 loc) · 1.62 KB
/
style.css
File metadata and controls
80 lines (73 loc) · 1.62 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
body{
font-family: "Product Sans","Poppins",sans-serif;
color: rgba(0,0,0,.5);
text-align: center;
text-transform: uppercase;
letter-spacing: .5em;
top: 15%;
background: linear-gradient(to right, red , yellow);
}
h1{
font: 600 3.5em "Product Sans", sans-serif;
color: rgba(0,0,0,.5);
text-align: center;
text-transform: uppercase;
letter-spacing: .5em;
width: 100%;
cursor: none;
}
h3{
font: 900 1.1em "Product Sans", sans-serif;
color: rgba(0,0,0,.5);
text-align: center;
text-transform: none;
letter-spacing: 0.2em;
}
input{
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
width: 250px;
height: 50px;
background-color: transparent;
border-radius: 100px;
border: none;
cursor: pointer;
}
.code #copy{
font-family: 'Poppins';
position: relative;
top: 10px;
background: #fff;
border: none;
border-color: #fff;
border-radius: 10px;
padding: 15px;
min-height:30px;
min-width: 120px;
cursor: pointer;
}
#random{
font-family: 'Poppins';
position: relative;
top: 30px;
background: #fff;
border: none;
border-color: #fff;
border-radius: 10px;
padding: 15px;
min-height:30px;
min-width: 120px;
cursor: pointer;
}
#random:hover{
border: 10px;
background: linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,0%,.1));
background-image: linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,0%,.1));
color: #fff;
}
@media only screen and (max-width: 750px) {
h1 {
font: 600 1.75em 'Product Sans',"Poppins",sans-serif;
}
}