forked from UWB-ACM/uwb-hacks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshowcase.scss
91 lines (82 loc) · 1.44 KB
/
showcase.scss
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
$background: rgb(27, 9, 37);
$foreground: #ddd;
$text-highlight: rgb(80, 233, 253);
$neon-pink: #fcb3ff;
$glow-pink: #ad3eff;
$nav-background: rgb(34, 34, 34);
$nav-foreground: $foreground;
$button-foreground: $foreground;
$student-fav: #fff94c;
$best-aesthetics: #77d8ff;
$best-functionality: #75ff75;
h6
{
color: $foreground;
}
.projects
{
background-color: $background;
display: flex;
justify-content: center;
align-items: center;
padding: 20px 0;
.center
{
width: 95%;
max-width: 800px;
}
p
{
margin: 7pt;
}
}
.student-favorite
{
border-color: $student-fav;
-webkit-text-stroke-color: $student-fav;
filter: drop-shadow(0 0 5px $student-fav);
}
.best-aesthetics
{
border-color: $best-aesthetics;
-webkit-text-stroke-color: $best-aesthetics;
filter: drop-shadow(0 0 5px $best-aesthetics);
}
.best-functionality
{
border-color: $best-functionality;
-webkit-text-stroke-color: $best-functionality;
filter: drop-shadow(0 0 5px $best-functionality);
}
.project-spacer
{
margin-bottom: 70pt;
}
.project
{
margin-bottom: 30pt;
img
{
display: block;
margin-top: 15pt;
margin-bottom: 5pt;
margin-left: auto;
margin-right: auto;
max-width: 80%;
}
}
.projects
{
p
{
color: $foreground;
}
}
.pull-request
{
@extend .projects;
.center
{
color: $foreground;
}
}