-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
112 lines (110 loc) · 1.94 KB
/
style.css
File metadata and controls
112 lines (110 loc) · 1.94 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
/* Type your code here */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500&display=swap');
* {
/* font-family: 'Nunito Sans', sans-serif; */
font-family: 'Open Sans', sans-serif;
}
/* change the font family and spacing as per your project font */
.first-box {
margin-left: 5%;
width: 60%;
}
body {
background-image: url(./assets/background-image1.png);
background-repeat: no-repeat;
background-size: cover;
}
table {
border-collapse: collapse;
font-weight: bolder;
background-color: white;
font-size: 18px;
font-weight: 500;
}
tr {
border: 2px solid #cbcbcb;
}
td {
padding: 10px 30px;
}
.logopic {
display: flex;
margin-top: 2%;
margin-left: 80%;
height: 3rem;
width: 15rem;
}
.heading {
text-shadow: 0px 5px 4px #939393;
font-size: 75px;
margin-top: 10px;
margin-bottom: 0px;
font-weight: 600;
}
.teams {
color: #6a6a6a;
font-size: 25px;
margin-top: 0px;
font-weight: 700;
margin-bottom: 30px;
}
a {
text-decoration: none;
color: #1aa3ff;
cursor: pointer;
}
a:hover {
}
.status {
color: gray;
}
.right-align {
width: 1%;
text-align: right;
}
.footer {
margin-top: 4%;
display: flex;
flex-direction: row;
align-content: flex-end;
position: relative;
top: 10px;
margin-left: 5%;
font-size: 18px;
font-family: 'Nunito Sans', sans-serif;
}
.footer img {
margin-left: 10px;
margin-right: 10px;
}
.popupMenu {
display: none;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
/* background-color: #ff0000;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2); */
z-index: 9;
height: 40rem;
width: 60rem;
}
.overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
z-index: 2;
}
.popupMenu.active {
display: block;
}
.overlay.active {
display: block;
}