-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
123 lines (102 loc) · 2.37 KB
/
style.css
File metadata and controls
123 lines (102 loc) · 2.37 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
@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300italic,400italic,500,500italic,700,700italic,900,900italic&subset=latin,cyrillic-ext,cyrillic);
/* font-family: 'Roboto', sans-serif; */
* {
padding: 0;
margin: 0;
}
body {
background-color: #f5f5f5;
line-height: 1.5;
font-family: 'Roboto', sans-serif;
color: #263238;
font-weight: normal;
font-style: normal;
}
.container {
max-width: 1600px;
margin: 0 auto;
}
h1 {
color: #009688;
text-align: center;
-webkit-box-shadow: inset 0 -3px 0 #009688;
box-shadow: inset 0 -3px 0 #009688;
padding: 30px 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
nav {
background-color: #009688;
border-radius: 4px;
/* padding: 10px; */
margin-top: 20px;
margin-bottom: 20px;
overflow: hidden;
}
nav ul {
padding: 0;
margin: 0;
list-style: none;
}
nav ul li {
display: inline-block;
}
nav ul li a {
display: block;
color: #eee;
text-decoration: none;
padding: 10px 16px;
}
nav ul li a:hover {
background-color: #00897b;
-webkit-box-shadow: inset 0 0 15px rgba(238, 238, 238, .3);
box-shadow: inset 0 0 15px rgba(238, 238, 238, .3);
-webkit-transition: background-color .3s ease-in-out;
-moz-transition: background-color .3s ease-in-out;
-ms-transition: background-color .3s ease-in-out;
-o-transition: background-color .3s ease-in-out;
transition: background-color .3s ease-in-out;
}
nav ul li a i {
color: #eee;
margin-right: 8px;
vertical-align: middle;
}
nav ul li a i.material-icons {
font-size: 14px;
}
.item {
background-color: #bdbdbd;
border-radius: 4px;
padding: 10px;
float: left;
margin-right: 20px;
width: 32.03%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.item i {
font-size: 250px;
border: 1px solid #9e9e9e;
color: #9e9e9e;
margin: 0 auto;
display: block;
text-align: center;
margin-bottom: 20px;
}
.item p {
color: #263238;
}
@media screen and (max-width: 769px) {
nav ul li {
display: block;
border-bottom: 1px solid #26a69a;
}
}
@media screen and (max-width: 1600px) {
.container {
padding: 0 10px;
}
}