-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
82 lines (73 loc) · 1.5 KB
/
style.css
File metadata and controls
82 lines (73 loc) · 1.5 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
html {
height: 100%;
width: 100%;
}
body {
background-color: #3c3c3c;
color: whitesmoke;
}
#gayButton {
margin: 12px;
height: 50px;
width: 120px;
border-radius: 10px;
background: #333;
justify-content: center;
align-items: center;
box-shadow: -5px -5px 15px #444, 5px 5px 15px #222, inset 5px 5px 10px #444,
inset -5px -5px 10px #222;
cursor: pointer;
border: none;
font-size: 16px;
color: rgb(161, 161, 161);
transition: 500ms;
}
.top-bar,
.bottom-bar {
background-image: url('code.gif');
height: 15px; /* Height of the bar */
width: 100%;
position: fixed;
left: 0;
right: 0;
}
.top-bar {
top: 0;
}
.bottom-bar {
bottom: 0;
}
#wrapper {
position: relative;
z-index: 2;
}
#background {
position: fixed;
z-index: 0;
background-image: linear-gradient(190deg,
rgba(7, 142, 112, 0.5),
rgba(38, 207, 170, 0.5),
rgba(153, 232, 193, 0.5),
rgba(123, 173, 226, 0.5),
rgba(79, 72, 203, 0.5),
rgba(61, 26, 119, 0.5)),
linear-gradient(185deg,
rgba(7, 142, 112, 0.5),
rgba(38, 207, 170, 0.5),
rgba(153, 232, 193, 0.5),
rgba(123, 173, 226, 0.5),
rgba(79, 72, 203, 0.5),
rgba(61, 26, 119, 0.5)),
linear-gradient(to bottom,
rgb(7, 142, 112),
rgb(38, 207, 170),
rgb(153, 232, 193),
rgb(123, 173, 226),
rgb(79, 72, 203),
rgb(61, 26, 119));
background-position: center;
background-repeat: no-repeat;
background-size: cover;
width: 128vw;
height: 128vh;
}