-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
115 lines (102 loc) · 1.62 KB
/
styles.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
@font-face {
font-family: Sparta;
src: url(./LeagueSpartan-VariableFont_wght.ttf);
}
* {
margin: 0;
padding: 0;
font-family: Sparta;
}
body {
width: 400px;
height: 590px;
}
.logo {
width: 100%;
height: 100px;
display: flex;
justify-content: center;
align-items: center;
}
img {
width: 200px;
height: 200px;
object-fit: contain;
}
.color-pallet {
width: 100%;
height: 100px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.heading {
width: 100%;
display: flex;
justify-content: center;
padding-bottom: 10px;
font-size: 18px;
}
.random {
display: flex;
margin-left: 50px;
}
.colors {
width: 100%;
display: flex;
justify-content: center;
}
.color-paleet-background {
display: flex;
flex-direction: row;
gap: 8px;
width: 98%;
height: 50px;
background-color: #d9d9d9;
align-items: center;
justify-content: center;
border-radius: 5px;
}
.color-paleet-background button {
width: 30px;
height: 30px;
border-radius: 10px;
border-style: none;
}
.color-paleet-background button:hover {
border: 1.5px solid #0084ff;
}
#cp_yellow {
background-color: #ffff77;
}
#cp_blue {
background-color: #7777ff;
}
#cp_green {
background-color: #aeff77;
}
#cp_purple {
background-color: #c977ff;
}
#cp_mint {
background-color: #77ff92;
}
#cp_aqua {
background-color: #77ffe4;
}
#cp_pink {
background-color: #ff77e4;
}
#cp_rose {
background-color: #ff7792;
}
#cp_orchid {
background-color: #ffc9ff;
}
#cp_magenta {
background-color: #ffaeff;
}
button.selected {
border: 2px solid #0084ff; /* Highlight selected button */
}