-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
115 lines (97 loc) · 1.63 KB
/
main.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
*{
font-family: "PingFang TC", -apple-system, "Helvetica Neue", Helvetica, "Open Sans", "Hiragino Sans GB", "Microsoft Jhenghei", sans-serif;
box-sizing: border-box;
max-width: 960px;
margin: auto;
background-color: #ffffff;
}
::selection{
background-color: #712AC6;
color: #ffffff;
}
body{
background-color: #ffffff;
}
a{
text-decoration: none;
color: #999999;
font-weight: 200;
font-size: 14px;
}
a:hover{
color: #712AC6;
text-decoration: none;
}
nav{
width: 100%;
height: 96px;
position: fixed;
background-color: rgba(255,255,255,0.95);
z-index: 3;
transition: all 0.4s ease;
text-align: right;
padding: 38px 30px;
}
.navi{
padding: 38px 16px;
text-align: right;
}
h1{
padding-left: 16px;
padding-top: 240px;
padding-bottom: 64px;
color: #712AC6;
font-size: 32px;
font-weight: 300;
letter-spacing: 2px;
}
.title{
margin: 0;
}
.description{
padding-left: 16px;
margin: 0px;
font-weight: 300;
letter-spacing: 1px;
color: #2C2B30;
line-height: 32px;
max-width: 540px;
padding-bottom: 64px;
}
.contact{
padding: 0 16px;
margin: 0;
}
.social-icon{
display: inline-block;
padding-right: 24px;
padding-bottom: 24px;
}
.navbar{
width: 100%;
height: 64px;
box-shadow: 0 2px 2px 0 rgba(0,0,0,.14);
}
.bmd-layout-drawer>.list-group .list-group-item
{
margin: 0;
}
@media only screen and (max-width: 482px){
nav{
display: none;
}
h1{
padding-top: 120px;
}
.description{
padding-right: 16px;
}
}
@media only screen and (min-width: 483px){
.bmd-layout-header{
display: none;
}
.bmd-layout-drawer{
display: none;
}
}