-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
85 lines (74 loc) · 1.47 KB
/
style.css
File metadata and controls
85 lines (74 loc) · 1.47 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
@import url('https://fonts.googleapis.com/css?family=Poppins:400,700');
*:focus {outline:none}
#gradient {
background: linear-gradient(to right, rgb(255,154,158), rgb(250,208,196));
align-items: center;
}
h1 {
font-family: 'Poppins', sans-serif;
color: white;
text-transform: uppercase;
text-align: center;
margin-top: 10vh;
font-size: 10vh;
}
.container {
display: flex;
flex-direction: column;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
.colors {
display: flex;
flex-direction: row;
}
input[type=color] {
margin: 10px;
width: 50px;
height: 50px;
border: none;
cursor: pointer;
}
.generated{
font-family: monospace;
color: white;
margin-top: 5vh;
font-size: 1.2rem;
font-weight: 400;
padding: 10px;
border-radius: 20px;
background: rgba(39, 40, 34, 0.8);
text-align: center;
}
.angle{
text-align: center;
background: rgba(255, 255, 255, 0.2);
border-color: rgba(0, 0, 0, 0.8);
border-width: 2px;
margin-top: 5vh;
padding: 20px 0;
border-radius: 50px;
font-family: 'Poppins', sans-serif;
font-weight: 800;
color: black;
}
input:focus::-webkit-input-placeholder {
opacity: 0;
transition-duration: 0.15s;
}
input:focus {
background: rgba(255, 255, 255, 0.4);
transition-duration: 0.15s;
}
::placeholder {
font-family: 'Poppins', sans-serif;
font-weight: 800;
color: rgba(0 , 0, 0, 0.6);
text-transform: uppercase;
}
@media (max-width: 640px) {
h1 {
font-size: 5vh;
}
}