-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
112 lines (112 loc) · 1.76 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
110
111
112
/*font is Latao for the whole document*/
html {
margin: 40px 100px;
font-family: 'Lato', sans-serif;
}
section{
width: 100%;
border-bottom: 1px solid #ddd;
margin-bottom: 50px;
}
section span{
font-size: 30px;
}
/*a href on hover cool feature */
a:hover{
color: purple;
}
img{
width: 100%;
}
/*h1 a href*/
h1 a{
font-size: 60px;
font-weight: 300;
text-decoration: none;
color: #FF0000;
}
h2 a{
font-size: 25px;
font-weight: 300px;
text-decoration: none;
color: black;
}
p + span {
color: grey;
font-size: 120px;
font-weight: 100;
}
h3{
font-size: 40px;
font-weight: 300;
}
header ul {
padding: 0px;
}
header ul li{
color: grey;
border-bottom: 2px solid;
margin-left: 10px;
padding: 10px;
display: inline-block;
justify-content: space-between;
font-weight: 300;
font-size:25px;
margin-bottom:30px;
margin-top:15px;
list-style: none;
}
header nav ul li a{
text-decoration: none;
color: grey;
}
section > span{
color: grey;
}
section + p{
color: black;
}
/*Next a href coloring*/
section a{
color: #FF0000;
margin-top: -40px;
float: right;
text-decoration: none;
font-size: 20px;
font-weight: bold;
}
/*the line between the two sections*/
section p{
margin-bottom: 50px;
}
section p::first-letter{
display: block;
float: left;
padding-right: 6px;
margin-top: -15px;
color: #ddd;
font-size: 95px;
font-weight: 300;
}
footer nav ul li{
display: inline-block;
font-weight: 300;
font-size:20px;
padding-left: 10px;
padding-right: 10px;
border-right: 1px solid grey;
}
footer nav ul{
padding-left: 0;
}
footer nav ul li > a{
text-decoration: none;
color: #FF0000;
}
footer nav ul li:last-child > a{
border: none;
}
/*span in footer*/
footer span{
color: grey;
}