-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
122 lines (103 loc) · 1.97 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
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
118
119
120
121
122
body {
margin: 0 auto;
font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}
.topnav {
top: 0;
width: 100%;
background-color: #f2f2f2;
display: flex;
justify-content: space-between;
}
.topnav-right a {
float: left;
color: black;
text-align: center;
padding: 41px 30px;
text-decoration: none;
font-size: 30px;
}
.topnav-right a:hover {
background-color: #ddd;
color: black;
text-decoration: underline;
}
.topnav-left a {
float: left;
color: black;
text-align: center;
padding: 30px;
text-decoration: none;
font-size: 50px;
}
.home-section {
padding-top: 100px;
display: flex;
justify-content: center;
text-align: center;
color: black;
font-size: 50px;
height: 900px;
background-image: url(/website/uploads/desktop.png);
background-repeat: no-repeat;
background-color: darkgray;
background-blend-mode: soft-light;
}
.home-box-inside {
/* position: fixed; */
width: 1000px;
height: 690px;
text-align: center;
opacity: 1;
background-color: white;
border-radius: 20px;
padding-bottom: 50px;
padding-left: 50px;
padding-right: 50px;
}
.home-box-inside p {
resize: none;
width: 1000px;
}
.home-box-inside h1 {
resize: none;
}
.project-section {
padding-top: 50px;
background-size: cover;
margin: 0;
background-color: white;
text-align: center;
height: 3500px;
font-size: 50px;
}
.project {
padding: 40px;
display: flex;
justify-content: space-evenly;
text-align: left;
}
.project img {
border-radius: 60px;
width: 300px;
height: 300px;
align-self: center;
}
.project-description {
padding: 40px;
}
.project-description p {
font-size: 30px;
resize: none;
width: 1000px;
}
.project-description a {
font-size: 30px;
}
.contact-info-links {
display: flex;
justify-content: center;
}
.contact-info-links img {
padding: 50px;
}