-
Notifications
You must be signed in to change notification settings - Fork 0
/
msc.css
82 lines (69 loc) · 1.19 KB
/
msc.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
@font-face {
font-family: "Koulen";
src: url('./fonts/Koulen-Regular.ttf');
font-display: swap;
}
:root {
--White: rgb(210, 210, 210);
--Gold: rgb(224, 187, 117);
--Black: rgb(30, 30, 30);
}
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
div {
scroll-behavior: smooth;
}
body {
background: rgb(10, 10, 10);
}
.site:hover {
opacity: 80%;
border: red solid 2px;
font-size: 21px;
border-radius: 2px;
}
.head {
font-family: "Koulen";
text-align: center;
padding: 20px 0;
font-size: 60px;
color: white;
}
.catagory {
font-family: "Koulen";
margin: 20px 0 20px 70px;
font-size: 25px;
color: white;
}
.l-sites {
margin: 0px 80px;
}
.sites {
text-align: center;
}
.site {
font-family: "Koulen";
text-decoration: none;
color: white;
margin: 20px;
display: inline-block;
border: red solid 1.5px;
padding: 20px 50px;
font-size: 20px;
transition: 0.15s;
}
@media only screen and (max-width: 800px) {
.site {
padding: 10px 20px;
font-size: 16px;
}
.catagory {
margin: 20px 0 20px 30px
}
.l-sites {
margin: 0px 30px;
}
}