-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
103 lines (102 loc) · 2.03 KB
/
style.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
*{
margin: 0;
padding: 0;
}
body{
background-image: linear-gradient(rgb(0,0,0,0.55),rgb(0,0,0,0.55),rgb(0,0,0,0.55)) ,url(aa.jpg);
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
}
.navbar{
margin-top: 19px;
width: 100%;
height: 150px;
}
img{
height: 150px;
float: left;
margin-left: 60px;
margin-right: 50px;
}
.ul1 {
list-style: none;
display: flex;
flex-direction: row;
}
.ul1 li{
margin-left: 20px;
color: white;
padding-top: 9px;
padding-left: 15px;
padding-right: 15px;
padding-bottom: 9px;
font-size: 18px;
font-family: 'Times New Roman';
border-radius: 2px;
transition: 0.3s ease-in-out;
}
li:hover{
color: black;
background-color: white;
}
.dropdown-menu{
list-style: none;
}
.dropdown:hover>.dropdown-menu {
display: block;
}
.dropdown>.dropdown-toggle:active {
/*Without this, clicking will make it sticky*/
pointer-events: none;
}
.main{
text-align: center;
}
.topic{
color: white;
font-size: 70px;
margin-top: 170px;
}
.span1{
color: white;
border: 1.5px solid white;
padding-top: 3px;
padding-bottom: 3px;
padding-left: 10px;
padding-right: 10px;
font-family:'Times New Roman';
transition: 0.3s ease-in-out;
}
.span2{
color: white;
border: 1.5px solid white;
padding-top: 3px;
padding-bottom: 3px;
padding-left: 10px;
padding-right: 10px;
font-family:Georgia;
transition: 0.3s ease-in-out;
}
.span3{
color: white;
border: 1.5px solid white;
padding-top: 3px;
padding-bottom: 3px;
padding-left: 10px;
padding-right: 10px;
font-family:'Times New Roman';
transition: 0.3s ease-in-out;
}
.span1:hover{
color: black;
background-color: white;
}
.span2:hover{
color: black;
background-color: white;
}
.span3:hover{
color: black;
background-color: white;
}