-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
114 lines (96 loc) · 1.58 KB
/
Copy pathstyle.css
File metadata and controls
114 lines (96 loc) · 1.58 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
*{
margin: 0px;
padding: 0px;
}
.container-fluid{
padding-top: 15px;
margin: auto;
background-color: rgba(53, 209, 22, 0.658);
color: white;
height: 80px;
}
h1{
font-family: 'Kaushan Script', cursive;
margin: auto;
padding-left: 20px;
}
.col-sm-1{
padding: 0;
text-align: center;
}
body{
background-color:black;
}
.text-center{
margin: auto;
padding: 50px;
color: white;
}
label{
height: 48px;
}
#mathematics{
background-image: url("math2.jpg");
background-position: center;
background-size: cover;
position: relative;
}
#trivia{
background-image: url("trivia5.jpg");
background-position: center;
background-size: cover;
position: relative;
}
#year{
background: url("year.jpg");
background-position: center;
background-size: cover;
position: relative;
}
.text{
text-align: center;
font-size: 20px;
font-family: serif;
color: sandybrown;
padding: 20px;
}
/* Mobile */
.mob-head{
display: none;
}
.mob-main{
display: none;
}
ul li{
list-style: none;
color: white;
background-color: black;
height: 40px;
padding-left:80px;
padding-top: 10px;
padding-bottom: 20px;
margin-top: 5px;
}
ul li:hover{
background-color: rgba(53, 209, 22, 0.658);
}
/* Responsive */
@media(max-width: 874px) {
.nav{
height: 104px;
}
}
@media(max-width: 600px) {
.nav{
display: none;
}
.mob-head{
display: block;
}
.web{
display: none;
}
.mob-main{
display: block;
}
}