-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
111 lines (108 loc) · 1.85 KB
/
index.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
html{
height: 100%;
}
body{
height: 100%;
background-color: #2D2D2D;
overflow: hidden;
}
main{
position: relative;
z-index: 2;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100%;
min-height: 100%;
overflow: hidden;
user-select: none;
}
.logo{
position: relative;
display: block;
width: 120px;
height: 120px;
margin: -120px 0px 0px 0px;
opacity: 0.2;
}
h1{
margin-bottom: 0px;
color: white;
font-family: "Segoe UI", sans-serif;
font-size: 42px;
font-weight: 100;
opacity: 0.8;
}
h3{
margin-top: 0px;
margin-bottom: 30px;
color: white;
font-family: "Segoe UI", sans-serif;
font-size: 16px;
font-weight: 100;
text-align: center;
opacity: 0.8;
}
p{
margin-top: 0px;
color: white;
font-family: "Segoe UI", sans-serif;
font-size: 14px;
font-weight: 100;
text-align: center;
opacity: 0.8;
}
#color_picker{
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
width: 320px;
min-width: 320px;
margin-bottom: 200px;
}
#color_picker .color{
display: block;
width: 28px;
height: 28px;
margin: 0px 7px 0px 7px;
background-color: white;
border-radius: 5px;
cursor: pointer;
}
#color_picker .color-lightblue{
background-color: #1DD5EC;
}
#color_picker .color-blue{
background-color: #1D6DEC;
}
#color_picker .color-darkblue{
background-color: #341DEC;
}
#color_picker .color-purple{
background-color: #9B1DEC;
}
#color_picker .color-pink{
background-color: #EC1DD5;
}
#color_picker .color-magenta{
background-color: #EC1D6E;
}
#color_picker .color-white{
background-color: #FFFFFF;
}
#github_link{
position: absolute;
z-index: 1;
bottom: 26px;
display: block;
width: 26px;
height: 26px;
opacity: 0.7;
filter: invert(1);
transition: 0.1s ease all;
}
#github_link:hover{
opacity: 1;
}