-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
67 lines (55 loc) · 939 Bytes
/
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
body {
overflow-x: hidden;
width: 100vw;
}
.full-width {
width: 100%;
}
.profile-section {
background-color: white;
color: black;
margin-top: 50px;
}
.contact-section p {
font-size: 20px;
}
.profile-section h1 {
color: black;
}
.profile-section h3 {
color: black;
}
.seperator {
background-color: #060606;
border-radius: 0px 0px 0px 50px;
height: 50px;
}
.seperator-2 {
background-color: white;
border-radius: 0px 50px 0px 0px;
height: 50px;
}
#loadnav {
position: fixed;
width: 100%;
background: rgb(75,75,75);
background: linear-gradient(0deg, rgba(75,75,75,0.5676645658263305) 0%, rgba(6,6,6,1) 100%);
top: 0;
right: 0;
}
.card-body .btn-outline-light{
color: white;
}
.card {
margin-bottom: 20px;
min-height: 96%;
transition: transform 1s, border-color 1s;
}
.expandable:hover {
transform: scale(1.2);
z-index: 2;
border-color: white;
}
.card .btn {
margin: 2px;
}