-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
130 lines (130 loc) · 2.42 KB
/
index.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
130
body{
background-color: #90e0ef;
margin: 0px;
}
a{
text-decoration: none;
color: black;
font-family: 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
}
header{
width: 100%;
background-color: #2a9edd;
padding-bottom: 10px;
border-style: solid;
}
header article{
text-align: center;
position: relative;
margin-left: auto;
margin-right: auto;
}
main{
text-align: center;
padding-top: 10px;
padding-bottom: 50px;
}
/* Memposisikan tiap poin di section about dan tugas */
main section article{
display: flex;
position: relative;
margin-left: auto;
margin-right: auto;
width: 400px;
border-style: solid;
border-radius: 20px;
margin-top: 10px;
border-color: #064567;
}
main section article a:hover {
background-color: #2a9edd;
color: white;
}
main section article a{
position: relative;
margin-left: auto;
margin-right: auto;
border-radius: 20px;
width: 100%;
height: 20px;
padding: 10px;
}
footer{
border-style: solid;
background-color: #2a9edd;
}
footer section div{
display: flex;
position: relative;
margin-left: auto;
margin-right: auto;
width: 400px;
}
#social{
display: flex;
justify-content: center;
padding-left: 35%;
padding-right: 35%;
padding-top: 20px;
}
#social div {
justify-content: center;
width: 50px;
height: 40px;
padding-top: 8px;
border-radius: 10px;
}
#social div a i{
font-size: 2em;
color: black;
opacity: 0.9;
}
#social div:hover{
background-color: black;
}
#social div a i:hover{
font-size: 2em;
color: #90e0ef;
opacity: 0.9;
}
#contact{
display: flex;
}
#contact div{
border-style: solid;
border-width: 3px;
border-color: #90e0ef;
border-radius: 20px;
padding-left: 20px;
padding-right: 20px;
margin-bottom: 10px;
}
#contact div p{
text-decoration: underline;
margin-left: auto;
margin-right: auto;
}
@media screen and (max-width: 650px) {
main section article{
width: 300px;
}
#social div {
justify-content: center;
width: 50px;
height: 30px;
border-radius: 10px;
padding: 5px;
margin: 10px;
}
#contact{
display: block;
}
#contact div{
max-width: 250px;
max-height: min-content;
}
#contact div p{
margin-top: 0px;
margin-bottom: 0px;
}
}