forked from gurjyot/Welcome-Widget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwelcome-widget.css
117 lines (110 loc) · 2.07 KB
/
welcome-widget.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
.ww-wrapper{
width: 100%;
/*border: 2px solid green;*/
background: #34495e;
margin: 0px 0px 5px 0px;
}
.ww-icons-wrapper{
padding: 9px 10px;
border-bottom: 1px dotted #999999;
}
#ww-heading{
margin: 0px 20px;
text-align: center;
font-size: 227%;
/*font-weight: 700;*/
padding: 3px 0 8px 0;
}
.ww-wrapper p{
color: white;
}
.ww-box{
width: 100%;
/*border: 2px solid black;*/
}
.ww-box td{
text-align: center;
/*border: 2px solid yellow;*/
width: 33%;
}
.ww-box p{
padding: 10px;
margin: 10px;
}
.fa.fa-question-circle, .fa.fa-comment, .fa.fa-thumbs-up{
font-size: 70px;
color: white;
}
.ww-button{
background: #3498db;
border: 0px;
padding: 10px 15px;
margin: 10px;
color: white;
cursor: pointer;
transition-duration: 0s;
}
.ww-button:hover{
color: white;
background: #4aa3df;
text-decoration: none;
}
.ww-button:visited{
color: white;
}
ul.ww-topnav {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #34495e;
}
ul.ww-topnav li {
float: left;
color: white;
/*border: 2px solid blue;*/
}
ul.ww-topnav li p{
margin: 0px;
padding: 15px 16px;
font-size: 17px;
}
ul.ww-topnav li a {
display: inline-block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
transition: 0.3s;
font-size: 17px;
border-left: 0.3px solid #999999;
}
ul.ww-topnav li a:hover {background-color: #445f7a;}
ul.ww-topnav li.icon {display: none;}
@media screen and (max-width:680px) {
.ww-icons-wrapper{
display: none;
}
ul.ww-topnav li:not(:first-child) {display: none;}
ul.ww-topnav li.icon {
float: right;
display: inline-block;
}
}
@media screen and (max-width:680px) {
ul.ww-topnav.responsive {position: relative;}
ul.ww-topnav.responsive li.icon {
position: absolute;
right: 0;
top: 0;
}
ul.ww-topnav.responsive li {
float: none;
display: inline;
}
ul.ww-topnav.responsive li a {
display: block;
text-align: left;
border-top: 0.3px solid #999999;
}
}