-
Notifications
You must be signed in to change notification settings - Fork 6
/
style.css
92 lines (79 loc) · 1.31 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
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
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: system-ui, sans-serif;
background-color: rgb(234, 239, 226);
}
nav {
display: flex;
align-items: center;
justify-content: center;
padding: 0.5rem;
gap: 4px;
}
nav a {
min-width: 9rem;
padding: 0.5rem;
border-radius: 0.2rem;
border: 1px solid rgb(22, 22, 22);
text-align: center;
text-decoration: none;
color: #1b1b1b;
}
nav input {
min-width: 9rem;
padding: 0.6rem;
border-radius: 0.2rem;
border: 1px solid rgb(22, 22, 22);
text-align: center;
text-decoration: none;
color: #1b1b1b;
}
main {
padding: 1rem;
border: 0.5px solid;
margin: 4px;
background-color: #fbeef6;
}
h1 {
font-weight: bold;
font-size: 1.5rem;
color: #7c40e4;
}
.projects {
display: flex;
flex-wrap: wrap;
max-width: 100%;
}
.project-link {
position: relative;
background-color: #fff;
padding: 30px 40px;
border-radius: 6px;
border: 1px solid #212121;
margin: 10px;
font-weight: bold;
width: 250px;
display: flex;
/* justify-content: center; */
align-items: center;
}
.project-link i {
font-size: 24px;
margin-right: 10px;
}
.text-decoration {
text-decoration: none;
color: black;
}
.completed i {
color: rgb(147, 212, 147);
}
.in-progress i {
color: orange;
}
.new i {
color: rgb(221, 150, 150);
}