This repository has been archived by the owner on Jul 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.css
93 lines (82 loc) · 1.72 KB
/
about.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
@font-face {
font-family: 'minion';
src: url('Minion-Pro-Display.otf');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'cooper';
src: url('cooper.ttf');
font-weight: normal;
font-style: normal;
}
span.close {
font-size: 25px;
font-family: 'Courier New', Courier, monospace;
color: #484848;
display: inline-block;
margin-right: 20px;
padding-top: 15px;
/*border-bottom: 5px solid #FFFC33;*/
}
span.close_border {
border-bottom: 18px solid yellow;
}
span.close_border:hover {
border-bottom: 18px solid #BBBBBB;
/*border-bottom: 5px solid #BBBBBB;*/
}
p.main-header {
font-size: 130px;
/*font-family: 'CooperHewitt-Medium', arial;*/
font-family: 'minion';
margin: auto;
color: black;
display: inline-block;
text-align: left;
max-width: 900px;
}
p.main-body-text {
font-size: 25px;
font-family: 'minion';
color: #484848;
display: block;
text-align: left;
line-height: 1.65;
}
p.main-body-header {
font-size: 50px;
font-family: 'cooper';
color: black;
display: inline-block;
text-align: left;
/*border-bottom: 5px solid yellow;*/
}
.parts-grid {
display: grid;
grid-template-columns: auto auto auto;
padding: 10px;
justify-items: center;
}
span.team-namestyle {
font-size: 25px;
font-family: 'minion';
color: #484848;
display: block;
}
span.team-titlestyle {
font-size: 18px;
font-family: 'minion';
color: #484848;
display: block;
}
span.unselectable {
-webkit-user-select: none;
/* Safari */
-moz-user-select: none;
/* Firefox */
-ms-user-select: none;
/* IE10+/Edge */
user-select: none;
/* Standard */
}