-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
127 lines (100 loc) · 2.28 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
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Waterfall&display=swap');
* {
box-sizing: border-box;
}
body,
html {
background : #000000;
font-family: 'Trebuchet MS', sans-serif;
text-align : center;
}
.mainContainer h1 {
font-family: 'Josefin Sans', sans-serif;
padding : 5px 0px 10px 0px;
color : #ffffff;
text-shadow: 0 0 10px #11d30b;
}
.mainContainer h1:hover {
text-shadow: 0 0 14px #0b7e07;
}
.container .teamName {
text-transform: uppercase;
padding : 10px 0px;
letter-spacing: 20px;
font-family : 'Josefin Sans', sans-serif;
color : #0ae7d5;
font-size : 17px;
}
.container .teamName span {
color: red;
}
.hr {
width : 600px;
border: 2px solid #292b2983;
}
.mainImage {
margin : 20px 0px;
width : 200px;
border : 3px solid rgba(14, 167, 14, 0.774);
border-radius: 50%;
box-shadow : 0px 0px 17px #06d117;
}
.mainImage:hover {
box-shadow: 0px 0px 19px #0c8a16;
}
.mainContainer {
text-shadow: 2px 2px 2px 2px green;
}
.text1 {
padding : 5px 200px;
text-transform: uppercase;
color : green;
}
.textbox {
background-color: #97e900;
color : #000000;
font-size : 17px;
border-radius : 20px;
padding : 10px 0px;
border : none;
text-align : center;
}
.text2 {
color : #ffffff;
font-size : 22px;
letter-spacing: 5px;
font-family : 'Waterfall', cursive;
}
@media only screen and (max-width:500px) {
.text1 {
padding : 0px 20px;
text-transform: uppercase;
color : #008000;
}
.effect2 {
font-size : 17px;
padding-top: 1px;
}
.container .teamName {
padding : 10px 0px;
letter-spacing: 12px;
font-size : 14px;
}
.mainContainer h1 {
padding: 2px 0px;
}
.textbox {
font-size: 13px;
width : 300px;
}
.hr {
width: 300px;
}
.text2 {
color : #ffffff;
font-size : 17px;
letter-spacing: 4px;
font-family : 'Waterfall', cursive;
}
}