-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
96 lines (96 loc) · 1.63 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
list-style-type: none;
text-decoration: none;
}
:root{
--white: #f0f0f0;
--black: #000;
--whiteSmoke: #f5f5f5f3;
}
body{
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
background-color: var(--black);
color: var(--white);
}
.container{
width: 1000px;
max-width: 100%;
padding: 1rem;
margin: 0 auto;
}
.text-center{
text-align: center;
}
.logo{
display: flex;
align-items: center;
justify-content:center;
font-size: 2rem;
font-weight: bolder;
margin: 1rem 0 .5rem;
}
.logo i{
font-size: 3rem;
margin-right: 1rem;
}
time{
font-weight: bold;
}
nav{
border-top: 2px solid var(--white);
border-bottom: 2px solid var(--white);
padding: .4rem 0;
margin: 1rem 0;
}
nav ul{
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-evenly;
}
nav a{
color: whitesmoke;
}
.row{
display: flex;
}
.col{
padding: 1.5rem;
flex: 1;
border-right: 2px solid #44434367;
}
.col:last-child{
border: none;
}
span{
color: red;
}
.Bold{
color: tomato;
display: block;
font-weight: 800;
padding: .7rem 0;
}
img{
max-width: 100%;
}
main p{
font-family:'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
line-height: 1.5rem;
letter-spacing: .51px;
font-size: .92rem;
}
main h3{
color: var(--whiteSmoke);
}
@media screen and (max-width: 768px){
.row{
flex-direction: column;
}
.col:not(:last-child){
border-right: none;
}
}