-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
148 lines (132 loc) · 3.15 KB
/
style.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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
html {
font-family: Segoe UI , Helvetica;
background: lightblue;
background-size: 100%;
height: 10000px; }
.separator {
margin-top: 20px;
opacity: 0.5;
border-top: 3px solid white;
-webkit-box-shadow: 2px 2px 4px #000000;
box-shadow: 2px 2px 4px #000000; }
.title {
margin-top: 3%;
-webkit-transition: 1s ease;
-o-transition: 1s ease;
transition: 1s ease;
background: #008CBA;
width: 100%;
-webkit-border-radius: 5px;
border-radius: 5px;
-webkit-box-shadow: 1px 2px 6px #000000;
box-shadow: 1px 2px 6px #000000; }
.navi li {
margin-left: 5px;
margin-right: -5px;
margin-bottom: -3px;
-webkit-transition: 1s ease;
-o-transition: 1s ease;
transition: 1s ease;
font-size: 28px;
-webkit-text-decoration: box;
text-decoration: box;
text-align: center;
list-style-type: none;
background: #00b2ed;
padding: 7px 1px; }
.search input[type=text], .search input[type=submit] {
font-family: Segoe UI Light;
margin-right: -8px;
font-size: 28px;
height: 100%;
padding: 7px 1px;
border-radius: 20px 0px 0px 20px;
border-color: transparent;
text-indent: 10px; }
.search {
margin-right: 20px;
margin-left: 20px; }
.search input[type=submit] {
margin-top: 6px;
background-color: #2386B4;
border: none;
padding: 9px 6px;
color: white;
border-radius: 0px 20px 20px 0px;
text-align: left;
font-size: 28px; }
.search input[type=submit]:hover {
-webkit-transition: 500ms;
-moz-transition: 500ms;
-ms-transition: 500ms;
-o-transition: 500ms;
transition: 500ms;
background-color: #96CDE6; }
.navi a {
-webkit-transition: 1s ease;
-o-transition: 1s ease;
transition: 1s ease;
display: block;
text-decoration: none; }
.navi a:visited {
color: #555555; }
.navi a:hover {
-webkit-transition: 1s ease;
-o-transition: 1s ease;
transition: 1s ease;
color: white; }
.navi li:hover {
-webkit-transition: 1s ease;
-o-transition: 1s ease;
transition: 1s ease;
background: #017fa8;
font: #FFF; }
.navi a:hover {
font: white; }
.topic h1 {
font-family: Segoe UI Light;
font-size: 48px;
text-align: left;
margin-left: 10px;
padding: 12px 12px;
color: white; }
.topic {
background: #008CBA;
-webkit-border-radius: 5px;
border-radius: 5px;
-webkit-box-shadow: 1px 2px 6px #000000;
box-shadow: 1px 2px 6px #000000; }
@media (min-width: 1120px) {
.title {
background-color: #00b2ed; }
.title:hover {
-webkit-transition: 1s ease;
-o-transition: 1s ease;
transition: 1s ease;
background: #008CBA; }
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden; }
.navi li {
float: left; }
.navi li a {
display: block-inline;
color: white;
text-align: center;
padding: 14px 16px;
margin-left: 5px;
text-decoration: none; } }
@media (max-width: 640px) {
.search input[type=text], .search input[type=submit] {
-webkit-transition: 850ms;
-moz-transition: 850ms;
-ms-transition: 850ms;
-o-transition: 850ms;
transition: 850ms;
border-radius: 20px 20px 20px 20px; }
.search input[type=text] {
width: 100%; }
.search input[type=submit] {
border-radius: 20px 20px 20px 20px; } }