-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
111 lines (94 loc) · 1.72 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
@import url('https://fonts.googleapis.com/css2?family=Cantata+One&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
#hero-section {
font-family: 'Cantata One', serif;
}
#background {
min-width: 100%;
height: 100vh;
background-color: #EDA751;
}
#white {
margin-top: -655px;
margin-left: 65px;
position: absolute;
width: 93%;
height: 82vh;
background-color: #FFFFFF;
padding: 40px 40px;
border: 1px solid black;
border-radius: 20px;
}
#nav .logo {
margin-left: 50px;
color: #EDA751;
font: 30px bold;
}
#nav .items {
word-spacing: 30px;
justify-content: space-between;
margin-right: 320px;
margin-top: -20px;
float: right;
}
#nav .items .resume {
margin-left: 110px;
}
#nav .items .resume .btn-resume {
border-color: #EDA751;
background-color: #FFFFFF;
border-radius: 5px;
font: bold;
width: 85px;
}
#content {
margin-top: 120px;
margin-left: 50px;
position: relative;
}
#content .hello {
font-size: 40px;
}
#content .name {
font-size: 70px;
}
#content .description {
color: #EDA751;
font-size: 40px;
}
#content .button {
background-color: #EDA751;
border-radius: 5px;
width: 70px;
font-size: 20px bold;
color: #FFFFFF;
}
#content .details {
font-size: 30px;
}
#circle {
position: relative;
z-index: 3;
background-color: #EDA751;
border-radius: 50%;
width: 47vw;
height: 55vh;
margin-left: 860px;
margin-top: -400px;
}
#white .hat img {
position: relative;
z-index: 5;
margin-top: -490px;
margin-left: 840px;
width: 23vw;
height: auto;
}
#main-content {
height: 40vh;
background-color: #FFFFFF;
}