-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
46 lines (43 loc) · 1.12 KB
/
index.css
File metadata and controls
46 lines (43 loc) · 1.12 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
body{
background-image: linear-gradient(rgba(235, 243, 255, 0.141), rgba(180, 180, 255, 0.741)), url(allen_high_school.jpg);
background-repeat: no-repeat;
background-size: 100vw 100vh, 125vw 110vh;
overflow: hidden;
}
#club-box{
position: absolute;
text-align: left;
width: 60vw;
height: 100vh;
top: 0;
left: 0;
padding-top: 5vh;
padding-left: 3vw;
font-size: calc(5vw + 5vh);
font-weight: bold;
color: white;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
-webkit-text-stroke: 2px #BBBBBB;
background-image: linear-gradient(to right, #1772c7, #44444400);
}
.link{
position: absolute;
right: 0;
width: 27.5vw;
padding-right: 1.5vw;
height: 10vh;
text-align: center;
line-height: 10vh;
font-size: 5vw;
border-radius: 3px;
font-family: 'Courier New', Courier, monospace;
color: white;
text-decoration: none;
background-color: #1772c7;
opacity: .8;
transition: transform .3s, opacity .3s;
}
.link:hover{
opacity: 1;
transform: translateX(-15px) scaleX(1.05) scaleY(1.02)
}