-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
157 lines (135 loc) · 3.08 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
/* Font Faster One */
@import url('https://fonts.googleapis.com/css2?family=Faster+One&display=swap');
/* Font Bungee */
@import url('https://fonts.googleapis.com/css2?family=Bungee+Inline&family=Faster+One&display=swap');
/* Poller One */
@import url('https://fonts.googleapis.com/css2?family=Poller+One&display=swap');
/* Audiowide & Black Ops One */
@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Black+Ops+One&display=swap');
/* border-radius: 50% to make image round */
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Black Ops One', sans-serif;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
perspective: 1000px;
background-image: url("./images/light.gif");
background-repeat: no-repeat;
background-size: cover;
}
.container {
width: 50%;
display: flex;
justify-content: center;
align-items: center;
}
.card{
transform-style: preserve-3d;
min-height: 70vh;
width: 30rem;
box-shadow: 0 20px 20px rgba(0,0,0,0.2), 0px 0px 50px rgba(0,0,0,0.2);
background-image: url("./images/stay.gif");
background-repeat: no-repeat;
background-size: cover;
border-radius: 20px;
padding: 0rem 5rem;
border-style: solid;
border-color: maroon;
}
.vader{
min-height: 40vh;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
.vader img {
width: 25rem;
border-radius: 50%;
z-index: 2;
transition: all 0.75s ease-out;
border-style: solid;
border-color: red;
filter: brightness(65%);
}
img .info {
vertical-align: top;
}
.info {
display: inline-block;
}
.info h1 {
min-height: 6vh;
line-height: 2px;
font-size: 2.5rem;
transition: all 0.75s ease-out;
text-align: center;
color: red;
-webkit-text-stroke: 2px gold;
}
.info p {
font-size: 1rem;
line-height: 0px;
padding-bottom: 2rem;
color: white;
text-align: center;
font-weight: bold;
font-family: 'Poller One';
transition: all 0.75s ease-out;
}
.sith, .power-level{
color: gold;
-webkit-text-stroke: 0.5px maroon;
}
.light-saber {
color: red;
-webkit-text-stroke: 0.5px yellow;
}
.real-name {
color: cyan;
-webkit-text-stroke: 0.5px navy;
}
.button {
margin-top: 0rem;
text-align: center;
transition: all 0.75s ease-out;
}
.button button {
width: 80%;
padding: 1rem 2rem;
background: black;
/* box-shadow: 0px 5px 10px rgba(0,0,0,0.2); */
color: white;
cursor: pointer;
border-radius: 30px;
font-weight: bolder;
font-family: 'Poller One', sans-serif;
text-align: center;
border: 2px solid maroon;
}
button:hover {
background: maroon;
border: 2px solid gold;
}
.copyright {
background: black;
color: yellow;
text-align: center;
padding: 10px;
width: 100%;
position: fixed;
bottom: 0px;
left: 0px;
}
.copyright .footer-icon{
justify-content: space-evenly;
color: white;
font-size: 1.5rem;
-webkit-text-stroke: 0.5px red;
}