-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathatlas.component.css
More file actions
143 lines (129 loc) · 2.32 KB
/
atlas.component.css
File metadata and controls
143 lines (129 loc) · 2.32 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
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
/* TODO: this file needs to be cleaned */
.aswwu-logo {
-webkit-filter: drop-shadow(5px 5px 30px rgba(0,0,0,0.5)); filter: drop-shadow(5px 5px 30px rgba(0,0,0,0.5));
}
.text-white {
color: white;
}
#aswwuLogo{
display: flex;
align-items: center;
justify-content: center;
transition: background-image 2s ease-in 1s;
background: black;
background-size:cover;
height:95vh;
width: 100%;
}
#aswwuLogo img{
width: 100%;
max-width: 800px;
height: auto;
padding: 0 20px 0 20px;
}
/*Section */
section {
padding-top: 20px;
padding-bottom: 50px;
}
section.dark {
background-color: #f4f4f4;
}
hr {
width: 36px;
border-color: #2f2e2e;
border-width: 3px;
margin-top:1.2em;
margin-bottom:1.5em;
}
/*Parallax window attributes*/
.parallax-window {
height: 400px;
overflow: hidden;
background-size: cover;
background-position: center;
background-attachment: fixed;
}
.parallax-center {
position: relative;
}
/*Random utilities*/
.m-x-auto {
display: block;
}
.logo {
max-width: 400px;
width:100%!important;
height: auto;
margin-bottom: .8em;
}
.full_height_parent{
display: flex;
}
.full_height_child {
align-items: stretch;
}
/*Giant link styles */
.giant-link {
color: white;
border-radius: 0;
border-width: 3px;
border-color:white;
transition: color .2s, border-color .2s;
font-weight: bold;
}
.giant-white {
color: white;
border-color: white;
}
.giant-black {
color: #373a3c;
border-color: #373a3c;
}
.giant-link:hover, .giant-link:active, .giant-link:focus {
color: #8c8c8c!important;
background-color: transparent!important;
border-color: #8c8c8c!important;
}
.center-content {
display: flex;
justify-content: center;
align-items: center;
}
.text-giant {
font-size: 3rem;
font-weight: 700;
text-align: center;
}
/*Our Team 'Person'*/
.person {
text-align: center;
margin-bottom: 40px;
}
.person .img-container {
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
border-radius: 50%;
width: 150px;
height: 150px;
overflow: hidden;
margin: 0 auto 0 auto;
}
.img-container img{
width:100%;
height: auto;
}
.person .name {
font-size: 24px;
color: #373a3c;
}
.person a:hover{
text-decoration: none;
}
.person .position {
text-transform: uppercase;
color: #c3c3c3;
margin-bottom: 30px;
letter-spacing: 2px;
}