-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
128 lines (115 loc) · 2.46 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
125
126
127
128
:root {
--black1 : #0e0e0e;
/* --grey1 : #1e1e1e; */
--grey1 : #0e0e0e;
--grey2 : #3a3a3a;
--grey3 : #1e1e1e;
--animation-time : 0.3s;
}
body {
margin:0;
background-color: var(--black1);
/* font-family: 'Noto Sans'; */
font-family: Ubuntu;
}
.main-container {
max-width: 900px;
margin-top: 40px;
margin-left: auto;
margin-right: auto;
padding-left: 10px;
padding-right: 10px;
}
.bar {
font-size: 24px;
}
.top-bar {
display: flex;
justify-content: space-between;
margin-bottom: 50px;
padding: 0 10px;
}
.top-bar-right {
display: flex;
}
.page-title {
color: white;
font-weight: bold;
}
.bottom-bar {
margin-top: 30px;
margin-bottom: 30px;
}
.bar a{
padding: 10px;
text-decoration: none;
color: black;
background-color: white;
height: fit-content;
font-weight: bold;
font-size: 14px;
border-radius: 20px;
margin-left: 10px;
box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}
.bar a:hover{
background-color: hsl(0 0 60%);
}
.section-container {
padding: 20px;
background-color: var(--grey3);
margin-bottom: 2em;
border-radius: 20px;
}
.section-grid {
display: grid;
grid-gap: 20px;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.section-title {
margin-left: -3em;
margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
padding-left: 3em;
border-radius: 20px;
width: fit-content;
padding-right: 50px;
background-color:#eee;
font-weight: bold;
color: black;
box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}
.item-card {
display: flex;
padding: 15px;
border-radius: 20px;
background-color: var(--grey2);
text-decoration: none;
box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}
.item-card:hover {
outline: white solid 2px;
}
.item-card-left {
margin-right: 15px;
}
.item-card-left > img {
width: 80px;
border-radius: 15px;
}
.title {
color: white;
font-weight: bold;
}
.description {
font-size:0.8em;
color: hsl(0 0 80%);
}
.divider {
/* height: 1px; */
/* background-color: hsl(0 0 30%); */
/* margin-top: 12px; */
margin-bottom: 10px;
/* margin-right: 20px; */
}