-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
111 lines (91 loc) · 1.99 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
:root {
--bg: linear-gradient(
45deg,
blue,
rgb(255, 145, 0)
)
}
* {
margin: 0;
}
body {
background: var(--bg) no-repeat center center fixed;
font-family: sans-serif;
font-weight: 900;
text-transform: uppercase;
}
.title-container {
font-size: 3.5rem;
background: white;
display: block;
box-shadow: 0 0 1em rgba(0, 0, 0, 0.35);
width: 71%;
margin-left: auto; margin-right: auto;
margin-top: 7vw;
margin-bottom: 2.5em;
font-style: italic;
padding: 0.5em 1.25em;
}
.title {
background: var(--bg);
-webkit-background-clip: text; background-clip: text;
color: transparent;
}
.buttons-container, .container {
font-size: 2rem;
background: white;
display: block;
box-shadow: 0 0 1em rgba(0, 0, 0, 0.35);
width: 60%;
margin-left: auto; margin-right: auto;
margin-bottom: 7vw;
padding: 5% 10%;
text-align: center;
}
.button {
font-size: 2rem;
font-weight: 900;
text-transform: uppercase;
border: 0;
margin-top: 0.25em; margin-bottom: 0.25em;
margin-left: auto; margin-right: auto;
padding: 0.5em 1em;
width: 10em;
background: var(--bg);
background-size: 200%;
background-position: left;
cursor: pointer;
transition: background-position 250ms linear;
}
.back-container {
font-size: 2rem;
background: white;
display: block;
box-shadow: 0 0 1em rgba(0, 0, 0, 0.35);
width: 25vw;
margin-left: auto; margin-right: auto;
margin-bottom: 3em;
padding: 1em 1.75em;
text-align: center;
}
.button:hover,
.button:focus {
background-position: right;
}
.discord-container {
font-size: 3rem;
width: 55vw;
height: 40vw;
margin-left: auto; margin-right: auto;
display: block;
box-shadow: 0 0 1em rgba(0, 0, 0, 0.35);
margin-bottom: 3em;
border-radius: px;
}
.discord-iframe {
width: 100%;
height: 100%;
}
.minecraft-container {
font-size: 2rem;
}