-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
120 lines (100 loc) · 1.67 KB
/
stylesheet.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
120
.center80 {
margin-left: auto;
margin-right: auto;
width: 80%;
}
@font-face {
font-family: "Gotham Bold";
src: url(fonts/GothamBold.ttf) format("truetype");
}
@font-face {
font-family: "Gotham Medium";
src: url(fonts/GothamMedium.ttf) format("truetype");
}
@font-face {
font-family: "Ubuntu Bold";
src: url(fonts/Ubuntu-Bold.ttf) format("truetype");
}
@font-face {
font-family: "Ubuntu Medium";
src: url(fonts/Ubuntu-Medium.ttf) format("truetype");
}
body {
border: 0;
margin: 0;
padding: 0;
background-color: rgb(250, 250, 250);
}
a {
text-decoration: none;
}
a :hover {
color: rgb(230, 230, 230);
}
ul {
list-style: none;
display: inline-block;
}
.h {
font-family: "Ubuntu Bold";
line-height: 2;
}
.p {
font-family: "Ubuntu Medium";
line-height: 1.7;
font-size: medium;
padding-bottom: 15px;
}
.noBorderAtAll {
border: 0;
margin: 0;
padding: 0;
}
.topBottomMargin {
margin-top: 1.5%;
margin-bottom: 1.5%;
}
.roundCornerImg {
border-radius: 30px;
}
.rcorners {
border-radius: 15px;
background: rgb(21, 84, 143);
padding: 20px;
width: 200px;
height: 30px;
}
.grid {
border-radius: 40px;
position: relative;
border: 0;
margin-left: 0;
box-shadow: 25px 25px 50px rgb(0, 0, 0, 0.2);
padding: 10%;
display: inline-block;
background-color: white;
vertical-align: top;
transition: 0.3s;
}
.grid:hover {
box-shadow: 25px 25px 50px rgb(0, 0, 0, 0.32);
}
.logo {
width: 2vw;
max-height: 50%;
filter: invert(1);
}
#navbar {
height: 120px;
position: sticky;
z-index: 999;
}
#navbar li {
display: inline-block;
}
#navbar ul {
margin: 0;
border: 0;
padding-left: 10%;
width: 80%;
}