-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
100 lines (85 loc) · 1.3 KB
/
Copy pathstyle.css
File metadata and controls
100 lines (85 loc) · 1.3 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
95
96
97
98
99
100
body {
color: #272829;
font-family: Roboto;
background-color: #E2C799;
padding: 60px;
text-align: center;
}
h1, h2, h3 {
color: #000000;
font-family: Yantramanav;
}
li {
display: inline;
padding: 0px;
}
ul {
display: inline-block;
list-style-type: disc;
padding: 0px;
}
a {
color: #272829;
text-decoration: none;
font-size: 18px;
font-weight: bold;
transition: 0.3s ease;
}
a:hover {
color: #61677A;
}
#profile-pic {
width: 200px;
height: 200px;
border-radius: 50%;
margin: 10px;
}
.card {
background-color: white;
padding-top: 20px;
padding-bottom: 60px;
padding-left: 40px;
padding-right: 40px;
margin: 35px auto;
border-radius: 10px;
border: 1px solid #A8A196;
box-shadow: 10px 10px 10px grey;
width: 500px;
}
#footer {
padding-top: 15px;
padding-bottom: 0px;
}
.container {
margin: 35px auto;
}
.list-inline > li {
display: inline-block;
padding: 20px 20px;
}
.list-inline {
list-style: none;
padding-left: 0px;
}
@media (max-width: 960px) {
.container {
width: 700px;
}
}
@media (max-width: 720px) {
.container {
width: 500px;
}
}
@media (max-width: 540px) {
.container {
width: 300px;
}
}
.btn-blue {
background-color: #690500;
color: white;
padding: 15px 20px;
border-radius: 10px;
margin: 30px;
}