-
Notifications
You must be signed in to change notification settings - Fork 15
/
style.css
57 lines (56 loc) · 1.24 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
@import url('https://fonts.googleapis.com/css2?family=Texturina&display=swap');
body {
background-image: radial-gradient( circle farthest-corner at 50.3% 44.5%, rgba(116,147,179,1) 0%, rgba(62,83,104,1) 100.2% );
box-sizing: border-box;
font-family: 'Texturina', serif;
}
#wrapper {
display: flex;
flex-flow: row wrap;
justify-content: space-around;
font-family: 'Texturina', serif;
font-size: 20px;
color: white;
}
#wrapper > div {
width: 350px;
box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.4);
border-radius: 5px;
background-color: #f1f1f1;
color: darkslategray;
margin: 10px;
padding: 20px;
text-align: center;
position: relative;
}
img {
margin-bottom: 30px;
}
#techStack {
position: absolute;
bottom: 5px;
left: 0;
right: 0;
}
button {
font-family: 'Texturina', serif;
border: none;
border-radius: 5px;
outline: none;
background-image: radial-gradient( circle farthest-corner at -4% -12.9%, rgba(74,98,110,1) 0.3%, rgba(30,33,48,1) 90.2% );
color: white;
width: 100px;
height: 30px;
}
h1{
text-align: center;
color: #f1f1f1;
font-size: 36px;
}
footer {
text-align: center;
color: #f1f1f1;
}
a {
text-decoration: none;
}