-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
74 lines (64 loc) · 1.38 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
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');
body {
background-color: #23252C;
font-family: 'Open Sans', sans-serif;
text-align: center;
margin: 0;
}
h1, h2, h3, h4, h5, h6 {
color: #F7F8F8;
}
header {
width: 100%;
height: 15px;
background-color: #01CEA2;
}
header > button {
float: right;
color: #23252C;
background-color: #F7F8F8;
border: 1px solid #F7F8F8;
margin-right: 10px;
height: 15px;
font-size: 0.6em;
outline: none;
}
header > button:hover {
border: 1px solid #01CEA2;
}
.FormWifi > input, .StopWifi {
width: 75%;
height: 35px;
text-align: left;
outline: none;
padding: 10px;
margin: 7px;
border: 1px solid #F7F8F8;
border-radius: 3px;
background-color: #F7F8F8;
box-shadow: 3px 3px 3px rgba(68,68,68,0.6);
transition: all ease;
transition-duration: 175ms;
}
.FormWifi > input:hover, .StopWifi:hover {
box-shadow: 5px 5px 5px rgba(68,68,68,0.6);
width: 78%;
}
.FormWifi > input[type='submit'], .StopWifi {
background-color: #01CEA2;
border: 1px solid #01CEA2;
text-align: center;
cursor: pointer;
color: #303841;
font-weight: bold;
}
footer > p {
font-size: 0.55em;
color: #F7F8F8;
}
hr {
border: 1px solid transparent;
border-bottom-color: #01CEA2;
background-color: transparent;
height: 1px;
}