-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
129 lines (127 loc) · 2.35 KB
/
style.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
* {
font-family: 'Source Code Pro', monospace;
color: white;
}
body {
background: #181818;
overflow-x: hidden;
}
#top {
position: fixed;
top: 0px;
left: 0px;
width: 100%;
height: 100px;
background: #282828;
z-index: 1;
overflow: hidden;
}
.menu {
height: 80px;
margin: 10px 10px 10px 10px;
border: none;
background: rgb(0, 128, 128, 0.25);
cursor: pointer;
padding-left: 20px;
padding-right: 20px;
transition: background 0.4s;
border-radius: 3px;
font-size: 16px;
}
.menu:hover {
background: rgb(0, 0, 0, 0.25);
text-decoration: underline;
}
.right {
float: right;
}
.left {
float: left;
}
#promotion {
position: absolute;
top: 200px;
left: 100px;
width: calc(100% - 200px);
}
#promotion-div {
background-image: linear-gradient(to bottom right, #181818, rgb(0,128,128,0.25));
padding: 1px 50px;
}
h1 {
font-size: 50px;
}
#promotion button {
margin: 50px 0px;
}
#shadow {
position: fixed;
top: 0px;
left: 0px;
height: 100%;
width: 100%;
background: rgb(0, 0, 0, 0.3);
z-index: 10;
visibility: hidden;
}
#message {
position: fixed;
top: 50%;
left: 50%;
width: 400px;
height: 250px;
padding: 20px;
margin: -145px -220px;
z-index: 11;
border-radius: 3px;
background: #282828;
visibility: hidden;
}
#message-text {
width: 100%;
height: 170px;
overflow-y: auto;
overflow-x: hidden;
line-height: 2;
overflow: auto;
}
#message button {
margin-top: 10px;
float: right;
height: 40px;
background: rgb(0, 128, 128, 0.25);
font-size: 16px;
border-radius: 3px;
border: none;
transition: background 0.4s;
padding-left: 20px;
padding-right: 20px;
}
#message button:hover {
background: rgb(0, 0, 0, 0.25);
text-decoration: underline;
cursor: pointer;
}
input {
width: 100%;
font-size: 16px;
background: transparent;
border: none;
border-bottom: 2px solid white;
opacity: 0.8;
outline: none;
}
input:hover {
opacity: 0.9;
}
input:focus {
opacity: 1;
}
.link {
cursor: pointer;
user-select: none;
-webkit-user-select: none;
}
.link:hover {
text-decoration: underline;
}