-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
84 lines (73 loc) · 1.38 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
body {
font-family: Roboto, Arial, Helvetica, sans-serif;
margin: 0;
background: #FF0000;
user-select: none;
letter-spacing: 3px;
overflow: hidden;
}
nav {
background-color: #FFFFFF;
width: 100vw;
min-height: 7.5vh;
font-size: 1.35rem;
font-weight: 425;
display: flex;
justify-content: space-evenly;
align-items: center;
gap: 5vw;
box-shadow: 0 0 30px 1px #666666;
}
.current {
color: #47A3E7;
cursor: pointer;
}
a {
text-decoration: none;
color: #000000;
}
a:active {
transition: color 0.2s ease;
color: #47A3E7;
}
.color {
color: #47A3E7;
user-select: text;
}
.color::selection {
color: #FFFFFF;
background: #47A3E7;
}
.color-generation {
display: flex;
flex-flow: column nowrap;
align-items: center;
gap: 5vh;
}
.container {
color: #FFFFFF;
font-weight: 900;
font-size: 1.8rem;
background-color: #222222;
min-width: 50vw;
height: 8vh;
border-radius: 10px;
margin-top: 35vh;
display: flex;
flex-flow: row nowrap;
justify-content: center;
align-items: center;
}
.clicker {
font-size: 0.97rem;
background-color: transparent;
min-width: 7vw;
font-weight: 700;
letter-spacing: 2px;
border-radius: 5px;
padding: 0.5%;
border: 2.5px solid black;
}
.clicker:active {
box-shadow: 0 0 0 2px #47A3E7;
}