-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
119 lines (111 loc) · 1.8 KB
/
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
body {
margin: 0;
height: 100%;
width:100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: white;
overflow: hidden;
}
.team-section{
overflow: hidden;
text-align: center;
background: white;
position: absolute;
width:100%;
height:auto;
top: 10vh;
}
.team-section h1{
margin-bottom: 0;
color: #d3bb74;
font-size: 40px;
font-family: 'Sacramento', cursive;
}
.border{
display: block;
margin: auto;
width: 160px;
height: 3px;
background: #7a5e3a;
margin-bottom: 40px;
}
.border-contents{
height: 40%;
width: 100%;
text-align: center;
float: left;
}
.photo{
margin-bottom: 40px;
}
.photo a{
display: inline-block;
margin: 32px;
width: 160px;
height: 160px;
overflow: hidden;
transform: rotate(45deg);
}
.photo a img{
width: 100%;
filter: grayscale(100%);
transition: 0.4s all;
transform: rotate(-45deg) scale(1.42);
}
.photo a:hover > img{
filter: none;
}
.section{
width: 600px;
margin: auto;
font-size: 28px;
color: #d3bb74;
text-align: justify;
height: 0;
overflow: hidden;
}
.section:target{
height: auto;
}
.name{
display: block;
margin-bottom: 10px;
text-align: center;
font-size: 22px;
font-family: 'Rajdhani';
}
.navbar-dark{
background:#7a5e3a;
}
.navbar-dark .navbar-brand{
font-family: 'Sacramento', cursive;
color:#7a5e3a;
font-size: 200%;
}
.navbar-dark .navbar-nav .nav-link:link {
color: #ffffff;
font-size: 18px;
}
.navbar-dark .navbar-nav .nav-link:hover {
color: #ffffff;
font-weight: 700;
}
.navbar-dark .navbar-nav .nav-link:visited {
color: #ffffff;
font-weight: 700;
}
.navbar-dark .navbar-text{
color:white;
font-size: 150%;
}
#footer-logo-text {
color: #ffffff;
font-size: 36px;
padding: 5px 10px 0px;
border: 3px solid #ffffff;
font-family: 'Sacramento', cursive;
margin-bottom: 0px;
}