-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
129 lines (122 loc) · 1.99 KB
/
stylesheet.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
123
124
125
126
127
128
129
/* Reset CSS */
*{
margin: 0;
padding: 0;
}
body{
font-family: Arial, Helvetica, sans-serif;
}
li{
list-style: none;
}
li:hover{
background-color: rgba(0, 0, 0, 0.5);
}
/* Header */
header{
background-color: #0e78be;
color: #ffffff;
height: 90px;
}
.header-logo{
float: left;
font-size: 36px;
padding: 20px 40px ;
}
.header-nav li{
float: left;
padding: 35px 20px ;
}
/* MAIN / CONTENT */
main{
padding: 100px 80px;
}
.main-container h1{
font-size: 95px;
}
.main-container h2{
font-size: 60px;
}
.main-container span{
color: #d40909;
}
/* Contents */
.contents{
height: 500px;
margin-top: 100px;
}
.section-title{
border-bottom: 2px solid #cecece;
font-size: 28px;
padding-bottom: 15px;
margin-bottom: 50px;
}
.contents-item{
float: left;
margin-right: 40px;
}
.contents-img{
width: 220px;
height: 220px;
padding: 10px;
background-color: aquamarine;
}
.contents-img.htmlcss{
background-color: white;
}
.contents-img.php{
background-color: aqua;
}
.contents-img.java{
background-color: lime;
}
.contents-img.python{
background-color: orchid;
}
.contents-img img{
width: 220px;
}
.contents-item p{
font-size: 24px;
margin-top: 30px;
}
/* Contact */
.contact{
padding-top: 100px;
}
input, textarea{
width: 400px;
margin-top: 10px;
margin-bottom: 30px;
padding: 20px;
font-size: 18px;
border: 1px solid #cecece;
}.contact-submit{
background-color: #059605;
color: #ffffff;
cursor: pointer;
}
.txt-red{
color: #d40909;
}
.contact span{
color: #d40909;
}
/* Footer */
footer{
background-color: #2f5167;
color: #ffffff;
padding: 20px 40px;
height: 30px;
}
.footer-logo {
float: left;
font-size: 30px;
}
.footer-nav {
float: right;
}
.footer-nav li {
padding: 10px 20px;
float: left;
}