-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFirst_Project.css
More file actions
144 lines (134 loc) · 2.48 KB
/
First_Project.css
File metadata and controls
144 lines (134 loc) · 2.48 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
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
body {
margin: 0;
text-align: center;
font-family: 'Merriweather', serif;
color: #61a094;
}
p{
font-size: 1.25rem;
line-height: 2;
}
h1 {
margin: 50px auto 2.5rem auto;
font-family: 'Sacramento', cursive;
font-size: 4.6875rem;
color: #2c786c;
}
h2 {
font-family: 'Montserrat', sans-serif;
font-size: 2.5rem;
color: #2c786c;
font-weight: normal;
padding-bottom: 10px;
}
h3 {
font-family: 'Montserrat', sans-serif;
color: #11999E;
}
.mountain{
margin: 0px;
}
#top-container {
background-color: #eff8f8;
position: relative;
padding-top: 100px;
}
.bottom-cloud {
position: absolute;
bottom: 300px;
left: 150px;
}
.top-cloud {
position: absolute;
right: 200px;
top: 40px;
}
.profile-img{
border-radius: 30%;
height: 200px;
width: 180px;
border: 2px solid lightseagreen;
}
hr{
border-style: none;
border-top-style: dotted;
border-color: #e95247;
border-width: 5px;
width: 3%;
margin: 100px auto;
}
.skill-row{
width: 50%;
margin: 100px auto 100px auto;
text-align: left;
}
.skill-1{
width: 25%;
float: left;
margin-right: 80px;
}
.skill-2{
width: 25%;
float: right;
margin-left: 80px;
}
.skill-3{
width: 25%;
float: left;
margin: 0 80px 0 0;
}
.intro{
width: 50%;
margin: auto;
}
.Contact-message{
width: 40%;
margin: 40px auto 60px;
color: black;
}
.lorem{
padding: 4%;
color: black;
}
.myButton {
box-shadow:inset 0px 1px 0px 0px #436b06;
background:linear-gradient(to bottom, #79bbff 5%, #e339cf 100%);
background-color:#79bbff;
border-radius:6px;
border:1px solid #84bbf3;
display:inline-block;
cursor:pointer;
color:#c91a1a;
font-family:Arial;
font-size:15px;
font-weight:bold;
padding:10px 35px;
text-decoration:none;
text-shadow:0px -9px 2px #ccb854;
}
.myButton:hover {
background:linear-gradient(to bottom, #e339cf 5%, #79bbff 100%);
background-color:#e339cf;
}
.myButton:active {
position:relative;
top:1px;
}
a{
margin: 10px;
display: inline-block;
color: #c91a1a;
text-decoration: none;
font-family: 'Sacramento', cursive;
font-size: 1.5vw;
font-weight: 900;
}
footer{
width: 100%;
height: 20vh;
background-color: #11999E;
margin-top: 80px;
}
.copyright{
color: black;
}