-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjava.css
More file actions
71 lines (62 loc) · 1.28 KB
/
java.css
File metadata and controls
71 lines (62 loc) · 1.28 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
61
62
63
64
65
66
67
68
69
70
71
* {
margin: 0;
padding: 0;
}
body {
height: 200%;
background-color: rgb(22, 22, 22);
}
.mainclass {
background-color: rgb(29, 29, 29);
width: 90%;
height: 145%;
margin-left: 5%;
}
.headerclass {
margin-left: 11%;
background-color: rgb(30, 30, 30);
color: rgb(177, 175, 173);
display: flex;
height: 10%;
width: 78%;
align-items: center;
justify-content: right;
justify-content: space-between;
}
#profileid {
background-image: url("profile.jpeg");
background-position: center;
background-size: cover;
overflow: hidden;
height: 30%;
width: 6%;
margin-right: -45%;
margin-left: 5%;
border-radius: 2vh;
}
.headerclass a {
font-weight: bolder;
color: rgb(206, 204, 204);
text-decoration: none;
margin-left: -40%;
margin-right: 3%;
font-size: large;
}
.headerclass :hover {
color: rgb(217, 171, 21);
cursor: pointer;
}
.vediobody {
display: flex;
flex-wrap: wrap;
gap: 6vh;
}
.vedioclass {
margin-left: 5%;
transition: transform 0.4s ease-in-out;
border: 0.1vh solid rgb(255, 208, 0);
}
.vedioclass:hover {
transform: scale(1.08);
border: 0.3vh solid rgb(255, 0, 0);
}