-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
80 lines (79 loc) · 1.55 KB
/
style.css
File metadata and controls
80 lines (79 loc) · 1.55 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
@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');
*{
padding: 0;
margin: 0;
scroll-behavior: smooth;
box-sizing: border-box;
font-family: "Exo 2", sans-serif;
color: var(--text-color);
}
body,html{
width: 100%;
height: 100%;
background: var(--extra-color);
}
:root
{
--primary-color: #3B1E54;
--secondary-color: #9B7EBD;
--text-color: #070707;
--extra-color: #D4BEE4;
--white-color: #fff;
--transition: all 0.3s ease-in-out;
}
.container{
background-color: var(--primary-color);
padding: 50px;
width: 100%;
max-width: 1200px ;
min-width: 300px;
margin: 100px auto 0;
border-radius: 10px;
}
.container h1{
color: var(--white-color);
padding-bottom: 30px;
text-align: center;
}
.container>p{
color: var(--white-color);
padding-bottom: 2rem;
text-align: center;
}
.project{
display: flex;
align-items: center;
justify-content: center;
background: var(--white-color);
padding: 15px;
margin: 10px auto 0;
border-radius: 8px;
}
.project .content h2{
padding-bottom: 10px;
}
.project .btn a{
display: block;
background: var(--primary-color);
padding: 10px 15px;
border-radius: 6px;
color: var(--white-color);
text-decoration: none;
margin: 10px;
text-align: center;
}
p{
font-size: 1.25rem;
}
footer{
text-align: center;
padding: 70px;
}
footer p{
margin-bottom: 10px;
color: var(--text-color);
}
footer i,a{
text-decoration: none;
font-size: 20px;
}