-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.css
150 lines (149 loc) · 2.71 KB
/
about.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
body{
background-color: #242423;
}
span:before{
content: 'Builder';
animation: animate infinite 4s;
}
@keyframes animate{
0%{
content: 'Musician';
}
20%{
content: 'Singer';
}
40%{
content: 'Song Writer';
}
60%{
content: 'Inspiration';
}
80%{
content: 'Creative';
}
100%{
content: 'Visionary';
}
}
header{
font-size: 50px;
text-align: center;
font-family: 'Rock Salt', cursive;
color: #DCED31;
}
.tour-header{
font-size: 35px;
text-align: center;
font-family: 'Rock Salt', cursive;
color: white;
}
p{
text-align: left;
font-family: 'Montserrat', sans-serif;
font-size: 22px;
color: white;
text-align: left;
}
mark{
background-color: #DCED31;
}
.soldout{
background-color: white;
}
a{
font-size: 25px;
color: #DCED31;
text-decoration: none;
padding-left:20px;
letter-spacing: 5px;
}
a:hover{
text-decoration: underline;
}
.described{
text-align: center;
}
.info{
text-align: center;
}
.datediv{
text-align: center;
}
.date-soldout{
text-decoration: line-through;
}
.date-soldout:hover{
text-decoration: line-through;
}
h1{
text-align: center;
font-size: 50px;
}
.bio{
padding-left: 100px;
padding-right: 100px;
}
.boardz {
display: flex;
justify-content: space-between;
flex: auto;
}
.boardz ul {
list-style-type: none;
flex-direction: column;
justify-content: space-between;
padding: 4px 0px 4px 0px;
flex: 1;
}
.boardz ul li {
margin: 8px 4px 8px 4px;
padding: 12px;
flex: auto;
background-color: #ffffff;
border: 1px solid #737373;
}
.boardz ul h1 {
margin: 0 0 10px 0;
padding-bottom: 4px;
border-bottom: 1px solid gray;
}
@media screen and (max-width: 800px) {
.boardz {
flex-direction: column;
}
.boardz ul li:last-child {
margin-bottom: 0;
}
.boardz ul {
margin: 0;
padding: 0;
}
}
.fitted ul {
display: flex;
}
.fitted ul li {
margin: 4px 4px 4px 4px !important;
}
.boardz img {
max-width: 100%;
height: auto;
}
.beautiful li {
border: none !important;
border-radius: 10px;
background-color: #f1f1f1 !important;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}
.beautiful li:hover {
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
.top-title{
letter-spacing: 2px;
text-align: left;
}
.more{
font-size: 15px;
padding-top: 30%;
}