-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
124 lines (107 loc) · 2.2 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
body {
background-image: url(img/background.png);
background-size: cover;
background-attachment: fixed;
font-family: "Roboto", sans-serif;
animation: fadeInAnimation ease 2s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
@keyframes fadeInAnimation {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.container {
display: grid;
grid-template-columns: 50% 50%;
position: relative;
background-color: rgba(0, 0, 0, 0.70);
border-radius: 5px;
min-width: 360px;
padding: 10px;
margin: 0 auto;
margin-top: 30px;
color: azure;
}
.left {
display: flex;
flex-direction: column;
justify-content: space-around;
margin-right: 50px;
margin-left: 20px;
padding: 10px;
}
.right {
display: flex;
flex-direction: column;
justify-content: space-around;
text-align: left;
}
.center {
display: flex;
flex-direction: column;
justify-content: space-around;
text-align: center;
}
.trio {
border-style: solid;
border: 10px solid;
}
.credits {
position: relative;
background-color: rgba(0, 0, 0, 0.70);
border-radius: 5px;
padding-top: 15px;
margin-top: 10px;
color: azure;
border-style:groove;
text-align: center;
}
.index {
text-align: center;
padding-bottom: 20px;
margin: 10px;
}
.odin {
width: 150px;
}
.yuk {
border-style: solid;
border: 10px solid;
}
.citatap {
border-style: solid;
border: 10px solid;
}
.kombu {
border-style: solid;
border: 10px solid;
}
a {
color: rgb(255, 255, 255);
padding: 14px 25px;
text-align: center;
text-decoration: none;
display: inline-block;
}
h1 {
text-shadow: 0 0 15px #ffad29;
}
h3 {
text-shadow: 0 0 15px #ffad29;
}
@keyframes spinning {
from { transform: rotate(0deg) }
to { transform: rotate(360deg) }
}
.spin {
animation-name: spinning;
animation-duration: 2s;
animation-iteration-count: 1;
/* linear | ease | ease-in | ease-out | ease-in-out */
animation-timing-function: ease-in-out;
}