-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.css
More file actions
72 lines (59 loc) · 1.35 KB
/
app.css
File metadata and controls
72 lines (59 loc) · 1.35 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
body {
overflow-x: hidden;
background-color: black;
}
h1 {
font-size: 10em;
font-weight: 100;
color: #fffff0;
font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
}
h2, p, li, label {
color: #E1E2E5;
font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
}
a circle {
pointer-events: none;
}
a {
display: block;
}
#container {
background:-o-linear-gradient(top, #000, #14031C);
background:-moz-linear-gradient(top, #000, #14031C);
background:-webkit-linear-gradient(top, #000, #14031C);
background:linear-gradient(top, #000, #14031C);
filter:progid:DXImageTransform.Microsoft.gradient(startColorStr='#000', EndColorStr='#14031C');
-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr='#000', EndColorStr='#14031C')";
}
#pixie {
z-index:10;
position: absolute;
top: 0;
left: 0;
}
form {
padding: 20px;
}
label {
font-size: 20px;
}
.circle {
border-radius: 50%;
width: 200px;
height: 200px;
border: 1px solid white;
}
#about {
-webkit-keyframes: fadeon 4s 1;
animation: fadeon 4s 1;
-webkit-font-smoothing:antialiased;
padding-top: 2.5em;
}
svg {
pointer-events: none;
}
.button {
background-color: #14031C;
border: 1px solid white;
}