-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
109 lines (88 loc) · 1.32 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
104
105
106
107
108
109
html * {
font-family: Georgia;
}
.header {
width: 100%;
height: 100px;
background-color: #052962;
margin-top: 0;
}
.header-logo-container {
text-align: center;
margin-right: 5%;
font-size: 30pt;
line-height: 25pt;
margin-top: 5%;
color: #ffffff;
font-family: "Georgia";
font-weight: bold;
}
.tag-line {
text-align: center;
color: #FFE500
}
.navigation {
display: flex;
justify-content: space-around;
margin-top: 4%;
font-family: "Georgia";
font-weight: bolder;
font-size: 25pt;
list-style: none;
}
.navigation a {
text-decoration: none;
}
.pillar a {
color: white;
}
.pillar {
border-top-style: solid;
border-top-color: transparent;
border-top-width: 5px;
}
.pillar:hover {
border-top-style: solid;
}
.news:hover {
border-color: #c70007;
}
.opinion:hover {
border-color: #e05e00;
}
.sport:hover {
border-color: #0084c6;
}
.culture:hover {
border-color: #a1845c;
}
.lifestyle:hover {
border-color: #bb3b80;
}
h2 {
margin-left: 20px;
font-family: "Georgia";
color: black;
font-weight: bold;
}
.fade {
opacity: 1;
}
.fade:hover {
opacity: 1;
}
.color:hover {
background: #53a7ea;
}
.circle:hover {
border-radius: 10%;
}
.rotate:hover {
transform: rotateZ(-5deg);
}
.shrink:hover {
transform: scale(0.5);
}
.grow:hover {
transform: scale(1.3);
}