-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
71 lines (61 loc) · 1.18 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
:root {
--selection: #BB86FC;
}
* {
font-family: "Rubik", serif;
margin: 0;
padding: 0;
color: #fff;
}
body {
background: linear-gradient(to bottom, #1C2D75, #ED7E5B);
height: 100vh;
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
max-width: 500px;
}
.rounded-project-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
border: 1px solid #f6b6c928;
background-color: #f6b6c918;
border-radius: 5px;
padding: 16px 16px 20px 16px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.rounded-project-container:hover {
background-color: #4d425e23;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}
.authors {
margin-top: 20px;
font-size: smaller;
font-style: italic;
color: #ffd9ce5d;
}
.title {
margin-bottom: 20px;
font-size: x-large;
font-weight: bold;
color: #ffd9ce93;
}
.project-title {
font-size: x-large;
font-weight: bold;
color: #f8eae6d5;
}
p {
margin-top: 8px;
color: #ffd9ced0;
}
a {
text-decoration: none;
}
::selection {
background: var(--selection);
}