-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcs3220.css
More file actions
60 lines (54 loc) · 1.06 KB
/
cs3220.css
File metadata and controls
60 lines (54 loc) · 1.06 KB
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
@font-face {
font-family: 'StarWars';
src: url('resourses/SF\ Distant\ Galaxy\ AltOutline.ttf');
}
html {
background-image: url('resourses/stars.jpg');
font-family:'StarWars';
height: 100%;
}
body {
color: white;
text-align: center;
margin-top: 100px;
height: inherit;
}
div#name {
font-size: 8vw;
}
div#course {
font-size: 6vw;
}
section.projects-container {
display: grid;
grid-template-columns: auto auto;
height: 50%;
gap: 5px;
margin-top: 40px;
}
button {
font-family: 'StarWars';
color: white;
background: transparent;
font-size: calc(10px + 1vw);
border: 2px solid gray;
border-radius: 10px;
width: 40%;
height: 80%;
justify-self: center;
}
button:hover {
cursor: pointer;
}
#pro1:hover {
box-shadow: inset 0 0 3vw green, 0 0 10px -2px white;
}
#pro2:hover {
box-shadow: inset 0 0 3vw blue, 0 0 10px -2px white;
}
#pro3:hover {
box-shadow: inset 0 0 3vw purple, 0 0 10px -2px white;
}
#pro4:hover {
box-shadow: inset 0 0 3vw red, 0 0 10px -2px white;
}