-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
87 lines (84 loc) · 1.34 KB
/
style.css
File metadata and controls
87 lines (84 loc) · 1.34 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
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");
* {
box-sizing: border-box;
}
body{
background-color: #000;
color: #fff;
display: flex;
font-family: "Roboto", sans-serif;
margin: 0;
padding: 2rem 0;
}
a{
color: #fff;
text-decoration: none;
}
main{
display: flex;
flex-direction: column;
width: 60%;
}
aside{
width: 40%;
}
.box{
background-color: #404040;
display: flex;
align-items: center;
justify-content: center;
padding: 1.5rem;
}
.box:not(:last-of-type){
margin-bottom: 1.5rem;
}
.dark-box{
background-color: #202020;
margin-bottom: 2rem;
}
.logo{
background-color: #fff;
border-radius: 35px;
color: black;
display: inline-flex;
font-size: 2rem;
align-items: center;
justify-content: center;
height: 80px;
width: 80px;
margin-right: 1rem;
}
h1{
font-size: 3rem;
margin:0;
}
h2{
font-size: 2rem;
font-weight: normal;
margin: 0;
}
h3{
color: #6f6f6f;
font-size: 1.5rem;
margin: 0;
}
p{
margin: 0;
}
.text{
width: 300px;
}
.fa-chevron-right{
font-size: 3rem;
}
@media screen and (max-width:760px) {
body{
flex-direction: column;
padding-right: 0;
}
aside,
main{
height: auto;
width: 100%;
}
}