-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
150 lines (125 loc) · 2.55 KB
/
styles.css
File metadata and controls
150 lines (125 loc) · 2.55 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
* {
font-family: 'Roboto', sans-serif;
/* font-family: 'Roboto Thin', sans-serif;
font-family: 'Roboto Light', sans-serif;
font-family: 'Roboto Medium', sans-serif;
font-family: 'Roboto Black', sans-serif; */
}
body {
background: rgb(112, 120, 142);
background: radial-gradient(circle, rgba(112, 120, 142, 1) 0%, rgba(89, 85, 105, 1) 100%);
display: flex;
align-items: center;
justify-content: space-between;
flex-direction: column;
height: 100vh;
}
/* Buttons */
button {
border-radius: 5px;
padding: 10px;
color: white;
background-color: rgb(44 44 139);
box-shadow: 2px 3px 5px #464040b5;
margin: 5px;
transition: all 300ms;
}
button:hover {
cursor: pointer;
background-color: rgb(60, 60, 136);
box-shadow: 2px 3px 5px #2e2b2b
}
button:disabled {
cursor: not-allowed;
background-color: rgb(94, 94, 106);
box-shadow: 2px 3px 5px #464040b5;
}
/* Inputs */
label {
color: white;
font-size: 25px;
}
input {
box-shadow: 2px 3px 5px #464040b5;
padding: 10px;
margin: 5px;
border-radius: 5px;
width: 800px;
}
select:hover,
input:hover {
box-shadow: 2px 3px 5px #2e2b2b
}
select {
padding: 10px;
border-radius: 5px;
margin: 5px;
transition: all 300ms;
}
#url-form {
display: flex;
}
#generate-palette-form {
margin: 10px;
display: flex;
}
#img-rendered-container {
margin: 30px;
height: 200px;
width: 400px;
background-color: #ededed1c;
display: flex;
justify-content: center;
align-items: center;
}
#palette-container {
margin: 10px;
display: flex;
flex-wrap: wrap;
height: 20vh;
}
#palette-container div {
display: flex;
align-items: flex-end;
width: 22vh;
height: 20vh;
}
#palette-container div p {
background: linear-gradient(to top, #3e3e3eb3, #343434b0, #3e3e3ea6, #6464646b, #ffffff00);
height: 35px;
display: flex;
align-items: flex-end;
justify-content: center;
color: white;
width: 100%;
}
/* Footer */
footer {
padding: 20px 50px 0px;
display: flex;
justify-content: space-between;
align-items: center;
border-top: 1px solid #ffffff29;
width: 100%;
}
#sign {
color: white;
opacity: 0.2;
transition: all 300ms ease-in-out;
}
#sign:hover {
user-select: none;
opacity: 1;
}
#socialNetworks {
font-weight: 600;
margin-left: auto;
display: flex;
width: 60px;
justify-content: space-between;
align-items: center;
}
footer a {
text-decoration: none;
color: white;
}