-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
94 lines (79 loc) · 1.35 KB
/
style.css
File metadata and controls
94 lines (79 loc) · 1.35 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
88
89
90
91
92
93
94
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@200;300;400;500&family=Inter:wght@200;300;400;500&display=swap');
body {
font-family: Inconsolata;
background-color: #F3F1F5;
text-align: center;
margin: 0;
}
h1, h2 {
font-weight: 800;
color: #406882;
}
#profile-pic {
height:200px;
width:200px;
border-radius: 100px;
}
p {
color: #1A374D;
}
a {
text-decoration: none;
color: #6998AB;
}
a:hover {
color: #00FFDD;
}
.header {
width: 70%;
padding: 50px 10px 50px;
margin: 5px auto;
background-color: white;
}
.main {
width: 70%;
padding: 10px;
margin: 5px auto;
background-color: white;
}
.footer {
width: 70%;
padding: 20px 10px 20px;
margin: 5px auto 0px;
background-color: white;
}
ul {
list-style-type: none;
display: flex;
}
li {
display: inline-block;
margin: auto;
}
.btn-blue {
display: block;
background-color: #6B72E1;
color: white;
padding: 15px 20px;
border-radius: 4px;
width: 150px;
margin: 0 auto;
}
@media (max-width: 960px) {
/* For a screen < 960px, this CSS will be read */
.container {
width: 700px;
}
}
@media (max-width: 720px) {
/* For a screen < 720px, this CSS will be read */
.container {
width: 500px;
}
}
@media (max-width: 540px) {
/* For a screen < 540px, this CSS will be read */
.container {
width: 300px;
}
}