-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
97 lines (83 loc) · 1.33 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
@font-face {
font-family: 'KeepCalm';
src: url('fonts/KeepCalm-Medium.ttf') format('truetype');
}
#main-title {
text-align: center;
padding: 40px 0px 40px 0px;
}
html {
height: 100vh;
}
body {
background: linear-gradient(#ffb886, #FF90ED);
background-attachment: fixed;
font-family: Helvetica, sans-serif;
padding: 40px;
text-align: center;
}
.main-container {
display: initial;
}
#menu {
position: absolute;
top: 0px;
right: 0px;
padding: 10px 10px 0px 0px;
font-family: KeepCalm, sans-serif;
color: #2e2e30;
}
#menu a:link {
color:#2e2e30;
}
#menu a:visited {
text-decoration: none;
color: #2e2e30;
}
#menu a:hover {
text-decoration: none;
color: #2e2e30;
cursor: pointer;
}
#menu a:active {
text-decoration: none;
color: #2e2e30;
}
#credit {
top: -6px;
display: inline;
position: relative;
padding: 0px 2px 0px 0px;
font-size: 12px;
}
.bmc-button {
position: relative;
top: -2px;
}
#donuts {
text-align: center;
}
.jscroll-added {
display: inline;
}
.donut {
display: inline;
}
@media only screen and (max-width: 900px) {
#main-title img {
width: 400px;
height: 117px;
}
}
@media only screen and (max-width: 600px) {
#main-title img {
width: 300px;
height: 88px;
}
}
@media only screen and (max-width: 400px) {
body {
margin: 0px;
padding: 30px 0px 0px 0px;
}
}