-
Notifications
You must be signed in to change notification settings - Fork 2
/
electronic.css
86 lines (66 loc) · 1.3 KB
/
electronic.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
.h {
text-align: center;
font-size: 50px;
font-family:Georgia, 'Times New Roman', Times, serif;
}
a{
color: darkblue;
}
/* a:hover {
color: cadetblue;
} */
.txt {
font-size: 25px;
}
.cont {
margin-bottom: 2%;
}
.rounded-icons {
text-align: center;
margin: 50px;
}
.social-button {
display: inline-block;
position: relative !important;
cursor: pointer !important;
width: 3.125rem !important;
height: 3.125rem !important;
border: 0.125rem solid transparent;
padding: 0;
text-decoration: none;
text-align: center;
color: #fefefe;
font-size: 1.5625rem;
font-weight: normal;
line-height: 2em;
border-radius: 1.6875rem;
transition: all 0.5s ease;
margin-right: 0.25rem;
margin-bottom: 0.25rem;
}
.rounded-icons .social-button:hover, .rounded-icons .social-button:focus {
-webkit-transform: rotate(360deg);
-ms-transform: rotate(360deg);
transform: rotate(360deg);
}
.social-button.rpi {
background: black;
}
.social-button.ros {
background : lightblue;
}
.social-button.arduino {
background : #009688;
}
.social-button.location {
background :black
}
@media(max-width : 600.98px)
{
.h {
font-size: 40px;
}
.txt {
font-size : 20px;
}
}