forked from rocketacademy/portfolio-page-bootcamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
117 lines (98 loc) · 1.5 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
* {
font-family: Helvetica;
}
::-webkit-scrollbar {
display: none;
}
body {
background-color: white;
max-width: 1500px;
margin-left: auto;
margin-right: auto;
}
h1 {
font-size: 8rem;
}
.intro {
display: flex;
flex-direction: column;
justify-content: center;
height: 100svh;
align-items: center;
}
.top {
gap: 15px;
background-color: #cc0024;
padding: 10px;
color: white;
position: fixed;
right: 10px;
width: 60px;
text-align: center;
}
.all-project {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: 600px 600px 600px;
gap: 30px;
margin: 60px;
}
#span {
grid-column: span 2;
}
.color1 {
background-color: #8d6c8f;
display: flex;
justify-content: center;
align-items: center;
}
.color3 {
background-color: #016eae;
display: flex;
justify-content: center;
align-items: center;
}
.color2 {
background-color: #7bb3d1;
display: flex;
justify-content: center;
align-items: center;
}
.title {
font-size: 2rem;
font-weight: bold;
}
.project-desc {
display: flex;
flex-direction: column;
justify-content: center;
}
.img {
width: 100%;
height: 100%;
object-fit: contain;
}
.emoji {
font-size: 11rem;
margin: 0px;
}
.emoji-card {
color: white;
font-size: 13rem;
margin: 0px;
}
a:visited {
text-decoration: none;
color: pink;
}
a {
text-decoration: none;
color: white;
}
.contact {
display: flex;
flex-direction: column;
max-width: 1500px;
justify-content: center;
align-items: center;
}