-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
148 lines (128 loc) · 2.52 KB
/
styles.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,500;1,400&display=swap");
:root {
--soft-blue: hsl(215, 51%, 70%);
--cyan: hsl(178, 100%, 50%);
--very-dark-blue-mainbg: hsl(217, 54%, 11%);
--very-dark-blue-cardbg: hsl(216, 50%, 16%);
--very-dark-blue-line: hsl(215, 32%, 27%);
--bright-blue: hsl(245, 75%, 52%);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: var(--very-dark-blue-mainbg);
font-size: 18px;
font-family: "Red Hat Display", sans-serif;
}
.card {
background-color: var(--very-dark-blue-cardbg);
width: 400px;
align-items: center;
justify-content: center;
margin: 75px auto;
margin-bottom: 0px;
border-radius: 15px;
}
.image {
width: 100%;
padding: 25px;
border-radius: 30px;
}
.information {
color: aliceblue;
padding-right: 20px;
padding-left: 20px;
}
.information strong {
letter-spacing: 1px;
}
.information p {
margin-top: 10px;
color: var(--soft-blue);
line-height: 25px;
}
.price_date_part {
display: flex;
flex-direction: row;
justify-content: space-between;
margin-top: 20px;
padding: 0 20px;
padding-bottom: 20px;
}
.left_side {
color: var(--cyan);
}
.left_side b {
padding-left: 5px;
font-weight: 500;
}
.right_side {
color: var(--soft-blue);
font-family: "Red Hat Display", sans-serif;
}
.line {
width: 90%;
border-color: var(--very-dark-blue-line);
margin: auto;
}
.creator_section {
display: flex;
flex-direction: row;
padding-top: 20px;
align-items: center;
padding: 15px 25px;
}
.creator_section img {
width: 45px;
border-color: white;
border: 1px solid white;
border-radius: 50px;
}
.name_of_person {
color: var(--soft-blue);
margin-left: 15px;
}
.name_of_person b {
color: white;
font-weight: 300;
}
.my_info {
background-color: var(--very-dark-blue-cardbg);
width: 220px;
margin: 30px auto;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
line-height: 18px;
color: var(--soft-blue);
border-radius: 40px;
font-size: 0.8rem;
}
.name {
padding: 20px 10px 0 10px;
}
.email {
padding-bottom: 15px;
}
.github_button {
background-color: var(--bright-blue);
width: 70%;
margin: 5px auto;
color: white;
border: none;
font-weight: 700;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
border-radius: 18px;
font-size: 1.5rem;
text-decoration: none;
height: 3rem;
padding-top: 15px;
}
.github_button:hover {
opacity: 0.8;
text-decoration: none;
}