-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
99 lines (85 loc) · 1.71 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
/* IMPORTING THE ABLETON SANS FONT */
/* Regular */
@font-face {
font-family: 'Ableton Sans';
src: url('assets/fonts/AbletonSansSmall-Regular.ttf') format('truetype');
font-style: normal;
}
/* Bold */
@font-face {
font-family: 'Ableton Sans';
src: url('assets/fonts/AbletonSansSmall-Bold.ttf') format('truetype');
font-weight: bold;
}
/* Italic */
@font-face {
font-family: 'Ableton Sans';
src: url('assets/fonts/AbletonSansSmall-RegularItalic.ttf') format('truetype');
font-style: italic;
}
/* BASE STYLING */
* {
background-color: #363636;
color: #b5b5b5;
font-family: 'Ableton Sans';
}
body {
margin: 0;
padding: 0;
box-sizing: border-box;
}
footer {
display: flex;
box-sizing: border-box;
justify-content: center;
align-items: center;
height: 5%;
position: absolute;
bottom: 0;
width: 100%;
font-size: 24px;
color: #a0c8d5;
background-color: #272a33;
}
h1 {
font-size: 2.5rem;
text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}
button {
font-size: 24px;
padding: 10px;
border-radius: 10px;
cursor: pointer;
transition-duration: 0.2s;
}
button:hover {
background-color: #2a2a2a;
color: #a0c8d5;
}
.container {
margin: 2.5vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#description {
box-sizing: border-box;
font-size: 1.4rem;
align-items: center;
justify-content: center;
}
.social-bar {
display: flex;
justify-content: center;
align-items: center;
margin: 20px;
}
.social-icon {
margin: 8px;
transition: transform 0.25s;
}
.social-icon:hover,
.social-icon:active {
transform: scale(1.2);
}