-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathstyles.css
More file actions
83 lines (73 loc) · 1.2 KB
/
styles.css
File metadata and controls
83 lines (73 loc) · 1.2 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
81
82
83
body
{
font-family: Arial, sans-serif;
}
header
{
background-color: #121212;
color: white;
text-align: center;
padding: 25px;
filter: drop-shadow(0 0 0.75rem black);
}
section.about
{
padding: 15px;
padding-top: 50px;
padding-bottom: 50px;
background-color: #4285F4;
filter: drop-shadow(0 0 0.75rem black);
display: flex;
}
section.about p
{
font-weight: bold;
}
div.aboutme
{
margin: 0 auto;
width: 50%;
padding: 15px;
background-color: #f0f0f0;
border-radius: 20px;
}
.mypicture
{
border: solid #ffffff;
padding: 15px;
border-radius: 20px;
margin-right: 100px;
}
h2.projects
{
padding-top: 15px;
padding-left: 15px;
font-size: 32px;
}
section.projects
{
padding: 15px;
padding-top: 0px;
display: flex;
}
section.projects div
{
border: solid;
border-radius: 5px;
padding: 15px;
margin-right: 15px;
}
footer.findme
{
text-align: center;
padding: 25px;
}
button
{
color: white;
padding: 16px 32px;
text-align: center;
font-size: 16px;
cursor: pointer;
background-color: #34a853;
}