-
Notifications
You must be signed in to change notification settings - Fork 2
/
mycss.css
120 lines (106 loc) · 2.23 KB
/
mycss.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
body {
animation: bgcolor 6s infinite;
font-family: 'Kanit', sans-serif;
}
@keyframes bgcolor {
0% {
background-color: #45a3e5
}
25% {
background-color: #66bf39
}
50% {
background-color: #eb670f
}
75% {
background-color: #f35
}
90% {
background-color: #864cbf
}
100% {
background-color: #45a3e5
}
}
.w3-blue{
color: #fff!important;
background-color: #2196F3!important;
}
.w3-blue:hover{
color: #fff!important;
background-color: rgb(0, 122, 221)!important;
}
.w3-button {
font-family : 'Kanit', sans-serif;
border: none;
display: inline-block;
padding: 6px 12px;
vertical-align: middle;
overflow: hidden;
text-decoration: none;
color: inherit;
background-color: inherit;
text-align: center;
cursor: pointer;
white-space: nowrap;
border-radius : 8px;
font-size: 14px;
outline: none;
margin-right: 10px;
}
input[type = text]{
font-family: 'Kanit', sans-serif;
color : #222;
padding : 10px;
border : 4px solid #CCC;
border-radius : 6px;
font-size : 16px;
text-overflow : ellipsis;
}
input[type = text]:focus{
font-family: 'Kanit', sans-serif;
color : #222;
padding : 10px;
border : 4px solid #AAA;
border-radius : 4px;
font-size : 16px;
outline : none;
text-overflow : ellipsis;
}
.chlan{
font-family: 'Kanit', sans-serif;
font-size: 14px;
border: none;
border-radius: 8px;
padding: 6px 12px;
cursor: pointer;
outline: none;
margin-right: 10px;
background-color: #FFF;
}
.chlan:hover{
font-family: 'Kanit', sans-serif;
font-size: 14px;
border: none;
border-radius: 8px;
padding: 6px 12px;
cursor: pointer;
outline: none;
margin-right: 10px;
background-color: #DDD;
}
.outer{
margin-top: 200px;
margin-bottom: auto;
margin-left: auto;
margin-right: auto;
width: 772px;
text-align: center;
}
.head{
text-align: center;
color: #FFF;
}
.output{
color: #FFF;
}