This repository has been archived by the owner on May 1, 2024. It is now read-only.
forked from MISW/birdol-privacy-html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
120 lines (105 loc) · 2.19 KB
/
main.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
*{
text-align: center;
letter-spacing: 1px;
font-family: 'Avenir','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'MS Pゴシック','MS PGothic' ;
}
body>h1{
font-size: 36px;
margin: 70px 10%;
letter-spacing: 3px;
}
body>h1::after{
content: "";
display: block;
height: 3px; width: 10%;
margin: 0 auto;
background: skyblue;
margin-top: 50px;
}
.Introduction p{
margin: 30px 10%;
font-size: 18px;
font-weight: bold;
}
.Introduction a{
display: inline-block;
width: 30%;
border: solid 5px rgb(255,181,170);
font-size: 16px;
font-weight: bold;
line-height: 36px;
border-radius: 5px;
text-decoration: none;
color: black;
transition: all .3s;
}
.Introduction a:hover{
color: white;
background: rgb(255,181,170);
}
.Container>div{
display: flex;
justify-content: center;
align-content: flex-start;
flex-wrap: wrap;
margin: 5% 10%;
padding-top: 30px;
border-top: solid 1px #CCC;
}
.Container>div li{
list-style: none;
text-align: left;
width: calc(50% - 31px);
margin: 15px;
border: solid 4px skyblue;
box-sizing: border-box;
font-size: 16px;
font-weight: bold;
line-height: 36px;
border-radius: 5px;
}
.Container>div h2{
width: 100%;
font-size: 32px;
padding: 5%;
}
.Container>div h2::after{
content: "";
display: block;
height: 3px; width: 10%;
margin: 0 auto;
background: skyblue;
margin-top: 50px;
}
.Container>div::after{
content: "";
display: inline-block;
width: 50%;
}
.Container>div li a{
text-decoration: none;
display: inline-block;
color: black;
height: calc(100% - 20px);
width: calc(100% - 20px);
padding: 10px;
transition: all .3s;
}
.Container>div li:hover{
background: skyblue;
}
.Container>div li:hover a{
color: white;
}
.Container>div li a:after{
content: "";
width: 100%; height: 100%;
}
@media screen and (max-width: 720px){
.Introduction a{
width: calc(80% - 30px);
}
.Container>div li{
width: calc(100% - 30px);
}
}